We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83acf1a commit ac8010eCopy full SHA for ac8010e
1 file changed
README.md
@@ -111,6 +111,12 @@ l.end.y = 9;
111
ret l.begin.x + l.end.y;
112
```
113
114
+```
115
+# Strings
116
+let print = extern test::print(s: Str): Void;
117
+let str = "Hello, World!";
118
+print(str);
119
120
121
## Error reporting
122
@@ -127,13 +133,6 @@ Expecting ';' but found 'ret' @3:17
127
133
Consider adding a semicolon to the end of the statement
128
134
129
135
130
-```
131
-# Strings
132
-let print = extern test::print(s: Str): Void;
-let str = "Hello, World!";
-print(str);
136
-
137
## Dependencies
138
139
None
0 commit comments