6 lines
88 B
Julia
6 lines
88 B
Julia
include_string("""
|
|
x = sum([1, 2, 3])
|
|
@show x
|
|
""")
|
|
|
|
@show typeof(x) # Int64
|