runtime modification

BlitzMax Forums/BlitzMax Programming/runtime modification

Cruis.In(Posted 2013) [#1]
hey guys can blitzmax make modifications at runtime? While the source is still running?


xlsior(Posted 2013) [#2]
blitzmax compiles to an executable .exe file, so the actual source (and understanding of blitzmax commands) disappears at compile time.

You can, however, use add-on scripting capabilities through LUA, for example. That one allows you to run arbitrary script code upon runtime, and chance the behaviour of the program.

There's several LUA implementations for blitzmax around.