- Use build.sh shell script
- Not supported yet
- Simple realisation, it can execute file
- Library provides inteface for interpretation of Befunge
- Suppoted Befunge commands(see Befunge-93):
- Management: < > ^ v @ _ | ? #
- Stack: : \ &
- Input: 0-9(numbers only yet)
- Print: . ,
- Arithmetic: + - * / %
- Logical: ! `
- Entering a long numbers:
- Entered numbers should be splitted by spaces or other commands:
- @ 123 123 < - enters two numbers(123 and 123)
-
1 2 3 @ - enters three numbers(1,2,3)
-
1.2.3.@ - enters and prints three numbers(1,2,3)