Julia mode

x={"julia"=>"language of technical computing"}
 
1
#numbers
2
1234
3
1234im
4
.234
5
.234im
6
2.23im
7
2.3f3
8
23e2
9
0x234
10
11
#strings
12
'a'
13
"asdf"
14
r"regex"
15
b"bytestring"
16
17
"""
18
multiline string
19
"""
20
21
#identifiers
22
a
23
as123
24
function_name!
25
26
#literal identifier multiples
27
3x
28
4[1, 2, 3]
29
30
#dicts and indexing
31
x=[1, 2, 3]
32
x[end-1]

MIME types defined: text/x-julia.