2024-06-11 10:38:46 -07:00
|
|
|
% TOMO(1)
|
|
|
|
% Bruce Hill (*bruce@bruce-hill.com*)
|
|
|
|
% June 11, 2024
|
|
|
|
|
|
|
|
# NAME
|
|
|
|
|
|
|
|
tomo - The programming language of tomorrow.
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
Run the REPL:
|
|
|
|
: `tomo`
|
|
|
|
|
|
|
|
Run a program:
|
|
|
|
: `tomo` *program.tm* \[\[`--`\] *args...*\]
|
|
|
|
|
|
|
|
Transpile tomo files to C files:
|
|
|
|
: `tomo` `-t` *file1.tm* *file2.tm*...
|
|
|
|
|
|
|
|
Compile files to static object files:
|
|
|
|
: `tomo` `-c` *file1.tm* *file2.tm*...
|
|
|
|
|
|
|
|
Compile file to an executable:
|
|
|
|
: `tomo` `-e` *file1.tm*
|
|
|
|
|
|
|
|
Build a shared library:
|
|
|
|
: `tomo` `-s=`*mylib.1.2.3* *file1.tm* *file2.tm*...
|
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
Tomo is a programming language that is statically typed, compiled, small, and
|
|
|
|
garbage-collected, with concise syntax and built-in support for
|
|
|
|
high-performance, low-overhead datastructures. It compiles by first outputting
|
|
|
|
C code, which is then compiled using a C compiler of your choice.
|
|
|
|
|
|
|
|
# OPTIONS
|
|
|
|
|
|
|
|
`-h`, `--help`
|
|
|
|
: Print the usage and exit.
|
|
|
|
|
2025-02-21 12:27:59 -08:00
|
|
|
`-t`, `--transpile`
|
2024-06-11 10:38:46 -07:00
|
|
|
: Transpile the input files to C code without compiling them.
|
|
|
|
|
2025-02-21 12:27:59 -08:00
|
|
|
`-c`, `--compile-obj`
|
2024-06-11 10:38:46 -07:00
|
|
|
: Compile the input files to static objects, rather than running them.
|
|
|
|
|
2025-02-21 12:27:59 -08:00
|
|
|
`-e`, `--compile-exe`
|
2024-09-22 11:59:40 -07:00
|
|
|
: Compile the input file to an executable.
|
|
|
|
|
2025-02-21 12:27:59 -08:00
|
|
|
`-L`, `--library`
|
2025-03-30 12:41:37 -07:00
|
|
|
: Compile the input files to a shared library file and header.
|
2024-09-22 11:59:40 -07:00
|
|
|
|
2025-02-21 12:27:59 -08:00
|
|
|
`-I`, `--install`
|
2024-09-22 11:59:40 -07:00
|
|
|
: Install the compiled executable or library.
|
2024-06-11 10:38:46 -07:00
|
|
|
|
2025-02-21 12:27:59 -08:00
|
|
|
`-C` *<program>*, `--show-codegen` *<program>*
|
|
|
|
: Set a program (e.g. `cat` or `bat`) to display the generated code
|
2024-12-19 12:02:39 -08:00
|
|
|
|
|
|
|
`--c-compiler`
|
|
|
|
: Set which C compiler is used.
|
|
|
|
|
2025-02-21 12:27:59 -08:00
|
|
|
`-O` **level**, `--optimization` **level**
|
|
|
|
: Set the optimization level.
|
|
|
|
|
2024-12-19 12:02:39 -08:00
|
|
|
`-v`, `--verbose`
|
|
|
|
: Print extra verbose output.
|
|
|
|
|
2025-03-01 21:31:03 -08:00
|
|
|
`-r`, `--run`
|
|
|
|
: Run an installed tomo program from `~/.local/share/tomo/installed`.
|
|
|
|
|
2024-06-11 10:38:46 -07:00
|
|
|
## ENVIRONMENT VARIABLES
|
|
|
|
|
|
|
|
Some options can be configured by setting environment variables.
|
|
|
|
|
|
|
|
`CC=`*c-compiler*
|
|
|
|
: Set which C compiler is used.
|