+ 1
If we creat a game how can we exucute it ?
I am bad at evry think :/
1 Answer
0
Depends on the language, and the platform tbh. Sololearn gives you a sandbox to run code with, but itâs kind of unique. In an average PC setting:
- C and its derivatives: Compiles to binary executable. Run with the OS.
- Java: Compiles to Java executable. Run with Java Runtime.
- Python: Run source with the Python Interpreter.
- JavaScript: Usually, make it part of an HTML page, then load that into a web browser. The browser will run the JS.
Did you mean a different language, or mean something different?