| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 
 | Tests separating Julia's commands from output in REPL-like code blocks
---input---
julia> f(x) = sin(π/2x)
f (generic function with 1 method)
julia> @. f(1:2)
2-element Vector{Float64}:
 1.0
 0.7071067811865475
---tokens---
'julia>'      Generic.Prompt
' '           Text.Whitespace
'f'           Name
'('           Punctuation
'x'           Name
')'           Punctuation
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'sin'         Name
'('           Punctuation
'π'           Name.Builtin
'/'           Operator
'2'           Literal.Number.Integer
'x'           Name
')'           Punctuation
'\n'          Text.Whitespace
'f (generic function with 1 method)\n' Generic.Output
'\n'          Generic.Output
'julia>'      Generic.Prompt
' '           Text.Whitespace
'@.'          Name.Decorator
' '           Text.Whitespace
'f'           Name
'('           Punctuation
'1'           Literal.Number.Integer
':'           Operator
'2'           Literal.Number.Integer
')'           Punctuation
'\n'          Text.Whitespace
'2-element Vector{Float64}:\n' Generic.Output
' 1.0\n'      Generic.Output
' 0.7071067811865475\n' Generic.Output
 |