문제

How do I save and compile a program in Befunge-93? What file extension do I need to save the file as (like fileName.what)? Then how do I compile it?

도움이 되었습니까?

해결책

Befunge is typically an interpreted language. In fact it was designed to be difficult to compile because the programs are self-modifying (but that hasn't stopped people from trying to write a compiler).

You should save the file however you like (a .bf extension is typically used) and run the interpreter (bef), passing the filename as a command line argument.

You can see the usage instructions in the source code for the interpreter.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top