Run Command

By default uclang will try to call the main funcion.

uclang run

This can be overwritten and basic arguments can be passed.

uclang run func(4)

These flags only apply if path was UCodeLang File,Module,Folder or .ulib.

The exit code is 0 if compilation succeed or 1 for compilation fail or if it panic or returns an error if the return type is an result type.

after runing the console will look like the following

returned:
void

or

returned:
1
FlagextraDescription
-jitnoneUses the jit compiler compiler instead of the interpreter.
-03noneActivates all optimization.
-nativenoneCompiles native code before running.