push : pushes an element to the stack.
pall : prints all the values on the stack, starting from the top of the stack.
pint : prints the value at the top of the stack, followed by a new line.
pop : removes the top element of the stack.
swap : swaps the top two elements of the stack.
add : adds the top two elements of the stack.
nop : doesn’t do anything.
sub : subtracts the top element of the stack from the second top element of the stack.
div : divides the second top element of the stack by the top element of the stack.
mul : multiplies the second top element of the stack with the top element of the stack.
mod : computes the rest of the division of the second top element of the stack by the top element of the stack.
When the first non-space character of a line is #, treat this line as a comment (don’t do anything).
pchar : prints the char at the top of the stack, followed by a new line.
pstr : prints the string starting at the top of the stack, followed by a new line.
rotl : rotates the stack to the top.
rotr : rotates the stack to the bottom.
stack : sets the format of the data to a stack (LIFO).
queue : sets the format of the data to a queue (FIFO).
Brainf*ck script that prints School, followed by a new line.
Add two digits given by the user.
Multiply two digits given by the user.
Multiply two digits given by the user.
Made with by [@Gus-Victrix](https://github.com/Gus-Victrix)