:include "c_wrap.tnsl" :include "logging.tnsl" :include "vector.tnsl" :include "utils.tnsl" :include "tokenizer.tnsl" /; main (int argc, ~~uint8 argv) [int] asm "mov r8, rcx" asm "mov r9, rdx" ~void open_handle = _open_file(argv{1}) ~void write_handle = _create_file(argv{2}) log_one_nl('a') tokenize_file(open_handle, write_handle) log_one_nl('a') _close_file(open_handle) _close_file(write_handle) return 0 ;/