Exemplo n.º 1
0
        private static ExecutionState Runtime_Log(RuntimeVM vm)
        {
            var text = vm.Stack.Pop().AsString();

            vm.Log(text);
            return(ExecutionState.Running);
        }