2024-02-24 13:06:49 -08:00
|
|
|
# Tomo - Tomorrow's Language
|
|
|
|
|
|
|
|
Tomo is a programming language designed to anticipate and influence the
|
|
|
|
language design decisions of the future.
|
|
|
|
|
|
|
|
```
|
2024-03-09 20:16:43 -08:00
|
|
|
func greeting(name:Text)->Text
|
|
|
|
greeting := "hello {name}!"
|
|
|
|
return greeting:title()
|
|
|
|
|
|
|
|
>> greeting("world")
|
|
|
|
= "Hello World!"
|
2024-02-24 13:06:49 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
Check out the [test/](test/) folder to see some examples.
|
2024-03-09 20:21:44 -08:00
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
Tomo uses the [Boehm garbage collector](https://www.hboehm.info/gc/) for
|
|
|
|
runtime garbage collection (which is available from your package manager of
|
|
|
|
choice, for example: `pacman -S gc`).
|