Archived
1
0
Fork 0

Cosmetics

This commit is contained in:
Julien Dessaux 2021-10-07 18:25:31 +02:00
parent 8daf3d58fc
commit 87fd2aa419
2 changed files with 5 additions and 5 deletions

View file

@ -39,6 +39,6 @@ if f == nil:
echo "Failed to load ", filename
quit 1
let argv = @[filename]
var p = NewPointer(argv=argv)
var p = NewPointer(argv = argv)
let v = NewInterpreter(f, p)[].Run()
quit v

View file

@ -10,12 +10,12 @@ randomize()
type
Pointer* = object
x, y: int # The pointer's positiont
dx, dy: int # The pointer's traveling delta
sox, soy: int # The storage offset
x, y: int # The pointer's positiont
dx, dy: int # The pointer's traveling delta
sox, soy: int # The storage offset
stringMode, lastCharWasSpace: bool # The string mode flags
ss: ref StackStack
next*: ref Pointer # the next element for multi-threaded funge-98
next*: ref Pointer # the next element for multi-threaded funge-98
characterInput*: proc(): int
decimalInput*: proc(): int
characterOutput*: proc(v: int)