we fixed this woooo

This commit is contained in:
Scarlett
2025-05-06 17:34:10 -04:00
parent 0a5b6ee7fb
commit 96cb2d7a09
3 changed files with 46 additions and 4 deletions

View File

@ -5,14 +5,23 @@ function entry: string2integer
entry (arg) := {
[integer: x; string: s; character: c; integer: result]
s := inS(1);
result := printCharacter('\t');
result := printCharacter('t');
result := printCharacter('a');
result := printCharacter('b');
result := printCharacter('\n');
result := printCharacter('\\');
result := printCharacter('"');
result := printCharacter('\'');
(*s := inS(1);
result := printS(s);
x := inI(1);
result := printI(x);
c := inC(1);
result := printC(c);
result := printC(c);*)
return 0;
}