You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Turns out the following if-else-for.cell program does not work:
world {
size = 100 [wrap], 200 [wrap];
tickrate = 1;
cellsize = 5;
}
state ident (0, 0, 0) {
become ident;
}
function f(int a) int {
if (a == 1) {
return a;
} else {
return a;
}
for (let x = a; x < a; x = x+1) {
let y = 2;
}
return a;
}
The text was updated successfully, but these errors were encountered:
Turns out the following
if-else-for.cell
program does not work:The text was updated successfully, but these errors were encountered: