@"hello world";
x=1;
@x;
@(
if 1+3==5:
"foo";
else:
"bar";
);
repeat 6: {
if repetitions == 3: continue;
else repetitions % 5 == 0: break;
@repetitions;
}
x=5;
j = [for e in 1...x-1: e*2];
@j;
f(x): {
n = 2;
while n < x:
@(n with n = n**2);
return;
};
f(199);
struct{
n = 3;
m = 5;
p = n+m;
};
@(struct p);