renamed Interp.Compile to Interp.CompileText
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-02-20 15:52:28 +09:00
parent ee152519a8
commit b80bea5f73
2 changed files with 20 additions and 24 deletions

View File

@ -22,10 +22,10 @@ begin
//x.AttachUDIO();
(*
x.Compile(pwidechar('(printf "hello 동키콩\n")'));
x.Compile('(printf "hello 동키콩월드\n") ');
x.Compile('(동가리오 := 20)');
x.Compile('(printf "%d %d\n" 동가리오 (+ 동가리오 동가리오))');
x.CompileText(pwidechar('(printf "hello 동키콩\n")'));
x.CompileText('(printf "hello 동키콩월드\n") ');
x.CompileText('(동가리오 := 20)');
x.CompileText('(printf "%d %d\n" 동가리오 (+ 동가리오 동가리오))');
x.Compile(pwidechar('(printf "%d %d\n" 동가리오 (동가리오 * 동가리오))'#10'printf "hello, world\n";;;'#10));
*)