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
tyro compiles source to bytecode and runs the bytecode on a stack based, JVM like, virtual machine
Here's an example of the code you can run:
a = 1;
b = 1;
while(b < 1000000000) {
print(b);
c = b + a;
a = b;
b = c;
}