2024-02-24 13:06:49 -08:00
|
|
|
# Tomo - Tomorrow's Language
|
|
|
|
|
2024-03-09 21:17:45 -08:00
|
|
|
Tomo is a statically typed, safe, simple, lightweight, efficient programming
|
|
|
|
language that cross-compiles to C. Tomo is designed to anticipate and influence
|
|
|
|
the language design decisions of the future.
|
2024-02-24 13:06:49 -08:00
|
|
|
|
|
|
|
```
|
2024-04-28 11:58:55 -07:00
|
|
|
func greeting(name:Text)->Text:
|
2024-03-09 20:16:43 -08:00
|
|
|
greeting := "hello {name}!"
|
2024-04-17 11:13:53 -07:00
|
|
|
words := greeting:split(" ")
|
|
|
|
return " ":join([w:capitalize() for w in words])
|
2024-03-09 20:16:43 -08:00
|
|
|
|
2024-04-28 11:58:55 -07:00
|
|
|
func main(name="World"):
|
2024-04-17 11:13:53 -07:00
|
|
|
to_say := greeting(name)
|
|
|
|
say(to_say)
|
|
|
|
```
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ tomo hello.tm
|
|
|
|
Hello World!
|
|
|
|
$ tomo hello.tm --name=åke
|
|
|
|
Hello Åke!
|
|
|
|
$ tomo -e hello.tm
|
|
|
|
$ ./hello --name="john doe"
|
|
|
|
Hello John Doe!
|
2024-02-24 13:06:49 -08:00
|
|
|
```
|
|
|
|
|
2024-03-09 21:17:45 -08:00
|
|
|
## Features
|
|
|
|
|
2024-04-20 12:12:25 -07:00
|
|
|
### Performance
|
2024-03-09 21:17:45 -08:00
|
|
|
- Extremely high performance code generation with minimal overhead compared to C
|
|
|
|
- Extremely fast parallel compilation times
|
2024-04-20 12:12:25 -07:00
|
|
|
- Language-level support for out-of-the-box function caching emphasizing
|
|
|
|
correctness
|
|
|
|
- Structs with known-at-compile-time methods, not OOP objects with vtable
|
|
|
|
lookups
|
|
|
|
|
|
|
|
## Safety
|
2024-03-09 21:17:45 -08:00
|
|
|
- Memory safety (garbage collection, compiler-enforced null safety, automatic
|
|
|
|
array bounds checking, and no uninitialized variables)
|
|
|
|
- Arithmetic overflow checking
|
|
|
|
- Type-safe strings representing different languages with automatic prevention
|
|
|
|
of code injection
|
|
|
|
- Pattern matching with exhaustiveness checking for tagged unions
|
2024-04-20 12:12:25 -07:00
|
|
|
|
|
|
|
## Simplicity
|
|
|
|
- Simple, low-boilerplate type system with type inference
|
|
|
|
- Well-defined reference and value semantics and mutability rules
|
|
|
|
|
|
|
|
## User-friendliness
|
|
|
|
- Useful and efficient built-in types: arrays, hash tables, structs, tagged
|
|
|
|
unions (sum types), cords (efficient string representation)
|
2024-03-09 21:17:45 -08:00
|
|
|
- Beautiful and helpful compiler and runtime error messages with emphasis on
|
|
|
|
user-friendliness
|
2024-04-20 12:12:25 -07:00
|
|
|
- Full UTF8 support for all text operations
|
2024-03-09 21:17:45 -08:00
|
|
|
- Built-in doctests with syntax highlighting
|
2024-04-20 12:12:25 -07:00
|
|
|
- Automatic command line argument parsing with type safety and no need for
|
|
|
|
libraries.
|
2024-03-09 21:17:45 -08:00
|
|
|
- Easy interoperability with C
|
2024-03-09 20:21:44 -08:00
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
2024-03-09 20:44:52 -08:00
|
|
|
Tomo has a very small set of dependencies:
|
|
|
|
|
|
|
|
- The [Boehm garbage collector](https://www.hboehm.info/gc/) for runtime
|
|
|
|
garbage collection.
|
|
|
|
- [libunistring](https://www.gnu.org/software/libunistring/) for unicode
|
|
|
|
string support.
|
|
|
|
- a C compiler
|
|
|
|
- and libc/libm, which should definitely already be installed.
|
|
|
|
|
2024-04-12 11:28:41 -07:00
|
|
|
The Boehm GC and libunistring should be available on your package manager of
|
|
|
|
choice (for example, `pacman -S gc libunistring`).
|
2024-03-09 20:44:52 -08:00
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
The Tomo compiler can be compiled with either GCC or Clang by running `make`.
|
|
|
|
|
2024-03-09 21:42:59 -08:00
|
|
|
## Usage
|
2024-03-09 20:44:52 -08:00
|
|
|
|
2024-03-09 21:42:59 -08:00
|
|
|
Run a Tomo file directly:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
tomo foo.tm
|
|
|
|
# Runs the program
|
|
|
|
```
|
|
|
|
|
|
|
|
Compile a Tomo file into an object file:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
tomo -c foo.tm
|
|
|
|
# Output: foo.tm.o
|
|
|
|
```
|
|
|
|
|
|
|
|
Transpile a Tomo file into a C header and source file:
|
|
|
|
```bash
|
|
|
|
tomo -t foo.tm
|
|
|
|
# Outputs: foo.tm.h foo.tm.c
|
|
|
|
```
|
|
|
|
|
|
|
|
Tomo uses the environment variables (`$CC`, `$VERBOSE`, and `$AUTOFMT`), which
|
|
|
|
control the compilation/running behavior of Tomo. The default behavior is to
|
|
|
|
use `tcc` (Tiny C Compiler) for fast compilation, `VERBOSE=0`, and
|
|
|
|
`AUTOFMT='indent -kr -l100 -nbbo -nut -sob'` for autoformatting generated code.
|
|
|
|
Any of these variables may be overridden, e.g. `CC=gcc VERBOSE=1 AUTOFMT= tomo
|
|
|
|
foo.tm` (compile with GCC and verbose compiler output without autoformatting
|
|
|
|
the code).
|
2024-03-09 21:17:45 -08:00
|
|
|
|
|
|
|
## Installing
|
|
|
|
|
|
|
|
```
|
|
|
|
make && sudo make install
|
|
|
|
```
|