diff options
Diffstat (limited to 'src/pointer.nim')
-rw-r--r-- | src/pointer.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pointer.nim b/src/pointer.nim index d6ce351..91fb8be 100644 --- a/src/pointer.nim +++ b/src/pointer.nim @@ -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) |