tomo/docs
2025-04-02 16:14:20 -04:00
..
.pandoc Move pandoc stuff into docs/ 2025-03-21 21:52:12 -04:00
arrays.md Syntax change: table types are now: {K=V; default=...} and tables 2025-04-02 16:14:20 -04:00
booleans.md Further shorten docs 2025-03-05 00:40:52 -05:00
bytes.md Rename Text.utf8_bytes back to Text.bytes 2024-11-19 13:30:45 -05:00
c-interoperability.md Further support for .dylib files on mac by changing syntax for library 2025-03-30 15:41:37 -04:00
command-line-parsing.md Update docs to standardize function signature formatting 2024-10-09 13:48:45 -04:00
compilation.md Further support for .dylib files on mac by changing syntax for library 2025-03-30 15:41:37 -04:00
enums.md Remove enum type prefix when printing enum 2025-03-16 17:07:22 -04:00
functions.md Change table syntax to {key=value} and {:K,V}/{K,V} 2025-01-12 16:49:58 -05:00
integers.md Further shorten docs 2025-03-05 00:40:52 -05:00
iterators.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
langs.md Move patterns into a module 2025-04-01 14:05:10 -04:00
libraries.md Further support for .dylib files on mac by changing syntax for library 2025-03-30 15:41:37 -04:00
metamethods.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
namespacing.md Don't use '$' prefix for field names 2025-03-11 13:18:30 -04:00
nums.md Add num:percent() 2025-03-24 14:56:11 -04:00
operators.md Fix docs 2025-03-24 22:54:06 -04:00
optionals.md Replace threads with generic mutexed datastructures. 2025-01-02 16:24:07 -05:00
paths.md Deprecate built-in Moment datatype in favor of a time module 2025-03-30 17:27:52 -04:00
pointers.md Add NULL as a syntax for null values. 2024-11-21 13:00:53 -05:00
README.md Fix docs 2025-04-01 17:42:31 -04:00
reductions.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
serialization.md Remove threads and mutexed data from the language in favor of a 2025-03-31 02:11:03 -04:00
sets.md Further shorten docs 2025-03-05 00:40:52 -05:00
structs.md Update docs to reflect deprecation of "&" stack references 2024-10-27 21:14:27 -04:00
tables.md Syntax change: table types are now: {K=V; default=...} and tables 2025-04-02 16:14:20 -04:00
text.md Syntax change: table types are now: {K=V; default=...} and tables 2025-04-02 16:14:20 -04:00
tomo.1 Move manpage into docs 2025-03-21 21:50:03 -04:00
tomo.1.md Further support for .dylib files on mac by changing syntax for library 2025-03-30 15:41:37 -04:00

Documentation

This is an overview of the documentation on Tomo.

Topics

A few topics that are documented:

Types

Information about Tomo's built-in types can be found here:

Built-in Functions

ask

Gets a line of user input text with a prompt.

func ask(prompt:Text, bold:Bool = yes, force_tty:Bool = yes -> Text?)
  • prompt: The text to print as a prompt before getting the input.
  • bold: Whether or not to print make the prompt appear bold on a console using the ANSI escape sequence \x1b[1m.
  • force_tty: When a program is receiving input from a pipe or writing its output to a pipe, this flag (which is enabled by default) forces the program to write the prompt to /dev/tty and read the input from /dev/tty, which circumvents the pipe. This means that foo | ./tomo your-program | baz will still show a visible prompt and read user input, despite the pipes. Setting this flag to no will mean that the prompt is written to stdout and input is read from stdin, even if those are pipes.

Returns:
A line of user input text without a trailing newline, or empty text if something went wrong (e.g. the user hit Ctrl-D).

Example:

>> ask("What's your name? ")
= "Arthur Dent"

exit

Exits the program with a given status and optionally prints a message.

func ask(message:Text? = !Text, status:Int32 = 1[32] -> Void)
  • message: If nonempty, this message will be printed (with a newline) before exiting.
  • status: The status code that the program with exit with (default: 1, which is a failure status).

Returns:
This function never returns.

Example:

exit(status=1, "Goodbye forever!")

print

Prints a message to the console (alias for say).

func print(text:Text, newline:Bool = yes -> Void)
  • text: The text to print.
  • newline: Whether or not to print a newline after the text.

Returns:
Nothing.

Example:

print("Hello ", newline=no)
print("world!")

say

Prints a message to the console.

func say(text:Text, newline:Bool = yes -> Void)
  • text: The text to print.
  • newline: Whether or not to print a newline after the text.

Returns:
Nothing.

Example:

say("Hello ", newline=no)
say("world!")

sleep

Pause execution for a given number of seconds.

func sleep(seconds: Num -> Void)
  • seconds: How many seconds to sleep for.

Returns:
Nothing.

Example:

sleep(1.5)

fail

Prints a message to the console, aborts the program, and prints a stack trace.

func fail(message:Text -> Abort)
  • message: The error message to print.

Returns:
Nothing, aborts the program.

Example:

fail("Oh no!")