implemented variables

This commit is contained in:
cannoli-fruit 2026-07-26 00:42:46 -04:00
commit bf4f1c19af
3 changed files with 98 additions and 0 deletions

14
flagpole/tests/vars.fp Normal file
View file

@ -0,0 +1,14 @@
$inc fvmstd.fp
proc main
2 @a
3 @b
&a 48 u+ @a
&b 48 u+ @b
&a :putchar
:newline
&b :putchar
:newline
endproc