75 lines
1.2 KiB
Plaintext
75 lines
1.2 KiB
Plaintext
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello world"
|
|
"hello\u0000world"
|
|
"🇬🇧"
|
|
"hello\u0000world"
|
|
|
|
let a,
|
|
b = 1,
|
|
c,
|
|
d = 42,
|
|
temp_result,
|
|
compute_area(radius) = 3.1415,
|
|
identity(x) = x,
|
|
f(x)=do
|
|
term.log("hello world")
|
|
do
|
|
term.log('hello world')
|
|
term.log("hello world")
|
|
,
|
|
g(y, z),
|
|
result,
|
|
z = 0,
|
|
extremely_long_variable_name_to_test_limits,
|
|
cache_value = compute_area(5),
|
|
placeholder_fn_with_no_body(arg1, arg2, arg3),
|
|
total = identity(100),
|
|
deeply_nested_args_function(arg1, arg2, arg3, arg4, arg5),
|
|
sum = a,
|
|
another,
|
|
another_function(),
|
|
just_null_here
|
|
|
|
|
|
|
|
|
|
if (x) do
|
|
term.log("hello world")
|
|
term.log("hello world")
|
|
else term.log("bruh")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mm=1/2/4/2/4354/534/534//534//3422*404203420234+3432423324&&430234230||4320423040230423^384239423043024923%4432042304920.3432423423
|
|
|
|
x = [
|
|
'hello world',
|
|
'wow',
|
|
10
|
|
]
|
|
|
|
term.log(x[0:1:1])
|
|
|
|
y = {
|
|
'hello':10,
|
|
world:'nice'
|
|
}
|
|
|
|
term.log(y['hello'],y.world) |