줄리아 공식 배포판은 줄리아의 REPL 통신 세션 셸을 포함하고 있으며, 테스트 코드를 빠르게 실험하기 위해 사용할 수 있다.[10] 다음 부분은 샘플 세션 예제의 하나로서, 문자열들은 printLn에 의해 자동으로 이어붙여진다.[11]
julia>p(x)=2x^2+1;f(x,y)=1+2p(x)yjulia>println("Hello world!"," I'm on cloud ",f(0,4)," as Julia supports recognizable syntax!")Hello world! I'm on cloud 9 as Julia supports recognizable syntax!
↑See also: https://docs.julialang.org/en/stable/manual/strings/Archived 2018년 7월 24일 - 웨이백 머신 for string interpolation and the string(greet, ", ", whom, ".\n") example for preferred ways to concatenate strings. Julia has the println and print functions, but also a @printf macro (i.e., not in function form) to eliminate run-time overhead of formatting (unlike the same function in C).