Julia mode #numbers 1234 1234im .234 .234im 2.23im 23e2 0x234 #strings 'a' "asdf" r"regex" b"bytestring" #identifiers a as123 function_name! #literal identifier multiples 3x 4[1, 2, 3] #dicts and indexing x=[1, 2, 3] x[end-1] x={"julia"=>"language of technical computing"} #types immutable Color{T<:Number} r::T g::T b::T end #functions function change!(x::Vector{Float64}) for i = 1:length(x) x[i] *= 2 end end #operators - + = / \ // -> == > < | & >= <= & ~ .>= .<= .== += -= /= ... #keywords and operators if else elseif while for in begin let end do try catch finally return break continue global local const export import importall using function macro module baremodule type immutable quote all true false any enumerate MIME types defined: text/x-julia.