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
Stack is a FIFO struct.
You can do it in rjs like this:
`
var Stack = NewStack("Your Stack Name");
if !Stack{
output("ERROR DATA");
exit(0);
}
Stack.Push("lol");
output(Stack.Pop()); //lol