We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1827c0c commit 45034efCopy full SHA for 45034ef
notes.txt
@@ -83,6 +83,10 @@ The immutable types String, Int are passed by value. Tuple is an
83
[]Object which is a reference type as is StringDict which is a
84
map[string]Object. Note that Tuples can't be appended to.
85
86
+Note that strings are kept as Go native utf-8 encoded strings. This
87
+makes for a small amount of awkwardness when indexing etc, but makes
88
+life much easier interfacing with Go.
89
+
90
List is a struct with a []Object in it so append can mutate the list.
91
92
All other types are pointers to structures.
0 commit comments