boxscript-interperter/code/app.bs

12 lines
146 B
Plaintext
Raw Normal View History

2022-11-27 21:42:49 +00:00
j=4;
create_function(joel,a,b,{
e2=42;
{
e=42;
printint(e2);
};
printint(e2);
printint(j);
});
joel(4,4);
printint(e);