Hacker News new | ask | show | jobs
by Eire_Banshee 2636 days ago
Portable python for games...? Does it compile and run natively?
2 comments

It's not Python.. it just has a similar syntax.

You currently run it either as a bytecode VM (which is rather fast and runs on any platform), or you can translate it to C++ if you want an additional speed boost.

The site says it compiles to bytecode and C++ source. Looking at recent commits, there's some non-functional WASM support: https://github.com/aardappel/lobster/commit/5b89bacd1b1d1e63...