Hi! I want to define my own native function `printh`, that calls lua native `print`: ```lua table.insert(_TBASIC._FNCTION, "PRINTH") _TBASIC.LUAFN.PRINTH = { print, 1 } ``` ```basic 10 PRINTH("HELLO, WORLD") ``` > ?L10: SYNTAX ERROR