a548dcc585
Changing permissions within the module was redundant and would have just conflicted with the :mut type qualifier. This is easier to understand.
53 lines
1.0 KiB
Plaintext
53 lines
1.0 KiB
Plaintext
:arf
|
|
---
|
|
|
|
data ro integer:Int 3202
|
|
|
|
data ro mutInteger:Int:mut 3202
|
|
|
|
data ro integerPointer:{Int}
|
|
|
|
data ro mutIntegerPointer:{Int}:mut
|
|
|
|
data ro integerArray16:{Int 16}
|
|
|
|
data ro integerArrayVariable:{Int ..}
|
|
|
|
data ro integerArrayInitialized:{Int 16}
|
|
3948 293 293049 948 912
|
|
340 0 2304 0 4785 92
|
|
|
|
# TODO: reinstate these two after phrase parsing is implemented
|
|
# data wr integerPointerInit:{Int} [& integer]
|
|
|
|
# data wr mutIntegerPointerInit:{Int}:mut [& integer]
|
|
|
|
data ro object:Obj
|
|
.this 324
|
|
.that 2139
|
|
|
|
data ro nestedObject:Obj
|
|
.this
|
|
.bird0 324
|
|
.bird1 "hello world"
|
|
.that
|
|
.bird2 123.8439
|
|
.bird3 9328.21348239
|
|
|
|
|
|
# func ro main
|
|
# ---
|
|
# # TODO: set should be a special case, checking under itself for object
|
|
# member initialization args. it should also check for args in general
|
|
# under there which should be treated as array initialization args.
|
|
# basically, under a set phrase, it should do the same checks that it
|
|
# does under a data section.
|
|
#
|
|
# [set object:Obj]
|
|
# .this 324
|
|
# .that 2139
|
|
#
|
|
# set object:Obj
|
|
# .this 324
|
|
# .that 2139
|