Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 83acf1a

Browse files
committed
Update documentation
1 parent 46ed993 commit 83acf1a

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

‎README.md‎

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ You can download the executables for Windows and Linux in the [release section](
2424
- [x] Error reporting
2525
- [x] Structs (on the heap)
2626
- [x] C-calls (FFI) to dynamic libraries
27-
- [ ] Arrays
28-
- [ ] String type
27+
- [x] Strings
2928
- [ ] Printing
29+
- [ ] Arrays
3030
- [ ] Closures
3131

3232
## Examples
@@ -127,6 +127,13 @@ Expecting ';' but found 'ret' @3:17
127127
Consider adding a semicolon to the end of the statement
128128
```
129129

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

132139
None

‎TODO.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Roadmap
22

33
- Strings
4-
- C-Strings
54
- terminal IO
65
- file IO
76
- Floats

0 commit comments

Comments
 (0)