The lines
(when (supports-julia?)
(plugin-input-converters julia))
in init-julia.scm cause multiline input in executable folds (Insert->Fold->Executable) to fail.
For some reason this command changes (plugin-supports-math-input-ref "julia") from #f to #t. This causes script input to be preprocessed in plugin-preprocess, removing newline characters.
Example Julia fold:
<\script-input|julia|default>
using Random
Random.seed!(42)
rand()
</script-input|0.6293451231426089>