Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46ed993 commit 83acf1aCopy full SHA for 83acf1a
2 files changed
‎README.md‎
@@ -24,9 +24,9 @@ You can download the executables for Windows and Linux in the [release section](
24
- [x] Error reporting
25
- [x] Structs (on the heap)
26
- [x] C-calls (FFI) to dynamic libraries
27
-- [ ] Arrays
28
-- [ ] String type
+- [x] Strings
29
- [ ] Printing
+- [ ] Arrays
30
- [ ] Closures
31
32
## Examples
@@ -127,6 +127,13 @@ Expecting ';' but found 'ret' @3:17
127
Consider adding a semicolon to the end of the statement
128
```
129
130
+```
131
+# Strings
132
+let print = extern test::print(s: Str): Void;
133
+let str = "Hello, World!";
134
+print(str);
135
136
+
137
## Dependencies
138
139
None
‎TODO.md‎
@@ -1,7 +1,6 @@
1
# Roadmap
2
3
- Strings
4
-- C-Strings
5
- terminal IO
6
- file IO
7
- Floats
0 commit comments