diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-04-12 14:26:52 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-04-12 14:26:52 -0400 |
| commit | 43eaad35711f1bff70da5647ca460cb65b7a56a5 (patch) | |
| tree | 17eeae9afc2d02232b29f11a6fa61a36c4c06b80 /README.md | |
| parent | 48d272c3fa8af67c095aafe25a565f142a1a8ebf (diff) | |
Update readme
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -9,8 +9,9 @@ func greeting(name:Text)->Text greeting := "hello {name}!" return greeting:title() ->> greeting("world") -= "Hello World!" +func main(name="World") + >> greeting(name) + = "Hello World!" ``` ## Features @@ -35,6 +36,7 @@ func greeting(name:Text)->Text - Structs with known-at-compile-time methods, not OOP objects with vtable lookups - Built-in doctests with syntax highlighting +- Built-in type-safe command line argument parsing - Easy interoperability with C ## Dependencies |
