TXT/ {/#DEBUG} {Text} {/#R}
TXT = TeXT
This command allow to write characters on screen. By default it is ASCII characters, vous can use this command for write characters UTF-8 with font and personnalised color.
Remain on the same line for next displaying.
/#R
Allow to log like system activities
/#DEBUG
Allow to scroll lines to the screen with touch. ESCAPE for stop, ENTER for cancel.
#PAUSE
Display the "%" character without take account like "%variable%".
\%
Allow to reformat the command line or text if any variable content variable name to read.
#REFORMAT-VAR
#VAR-REFORMAT
#REFORMATER-VAR
#VAR-REFORMATER
Prohibit variable searching. Preserve "%variable%" text.
#NON-VAR
#NO-VAR
Prohibit function execution. Preserve "/F:MyFunction()" text.
#NON-FN
#NO-FN
TXT/ Hello world!
Display on the console :
Hello world!
TXT/ Hello /#R
TXT/ i'm remain on the same line!.
Display on the console :
Hello i'm remain on the same line!
SET/ abc = Hello
TXT/ %abc% world!
Display on the console :
Hello world!
SET/ abc = Hello
SET/ toto = world
TXT/ %abc% %toto%!
Display on the console :
Hello world!
SET/ abc = Hello
SET/ toto = \%abc\%
TXT/ %toto% !
Display on the console :
%abc% !
SET/ abc = Hello
SET/ toto = \%abc\%
TXT/ %toto% !\#REFORMAT-VAR
Display on the console :
Hello !
SET/ abc = Hello
SET/ toto = \%abc\%\#REFORMAT-VAR
TXT/ %toto% !
Display on the console :
Hello !