aardappel / lobster

The Lobster Programming Language

Home Page:http://strlen.com/lobster

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hotfix support

Xarvie opened this issue · comments

is it support runtime compile? like code.compile(“./main.codefile”);
hot reload for mobile game bug fix.

Oh, it’s support.

Do note when you use compile_run_file, that code essentially runs in its own VM, so it's not suitable for hot-patching unless you always run the code to be patched separately from the "launcher".

thanks, got it