Skip to content

Commit ac8010e

Browse files
committed
Update readme
1 parent 83acf1a commit ac8010e

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ l.end.y = 9;
111111
ret l.begin.x + l.end.y;
112112
```
113113

114+
```
115+
# Strings
116+
let print = extern test::print(s: Str): Void;
117+
let str = "Hello, World!";
118+
print(str);
119+
```
114120

115121
## Error reporting
116122

@@ -127,13 +133,6 @@ Expecting ';' but found 'ret' @3:17
127133
Consider adding a semicolon to the end of the statement
128134
```
129135

130-
```
131-
# Strings
132-
let print = extern test::print(s: Str): Void;
133-
let str = "Hello, World!";
134-
print(str);
135-
```
136-
137136
## Dependencies
138137

139138
None

0 commit comments

Comments
 (0)