tomo/docs
Bruce Hill f93dde1449 Overhaul of Text implementation to be more like Cords and have much
better performance for long sequences of repeated concatenation.
2025-01-23 15:33:56 -05:00
..
arrays.md Change table syntax to {key=value} and {:K,V}/{K,V} 2025-01-12 16:49:58 -05:00
booleans.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
bytes.md Rename Text.utf8_bytes back to Text.bytes 2024-11-19 13:30:45 -05:00
c-interoperability.md Update docs 2024-09-18 15:40:35 -04:00
command-line-parsing.md Update docs to standardize function signature formatting 2024-10-09 13:48:45 -04:00
compilation.md Move docs 2024-08-10 14:26:41 -04:00
enums.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -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 Add Int:factorial() and n:choose(k) 2024-12-24 14:20:16 -05:00
iterators.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
langs.md Change table syntax to {key=value} and {:K,V}/{K,V} 2025-01-12 16:49:58 -05:00
libraries.md Change table syntax to {key=value} and {:K,V}/{K,V} 2025-01-12 16:49:58 -05:00
metamethods.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
moments.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
mutexed.md Use holding blocks for mutexed data instead of lambdas 2025-01-02 20:29:55 -05:00
namespacing.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
nums.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
operators.md Clean up behavior and syntax for unsigned bit shifts (<<<, >>>) 2024-11-03 16:06:26 -05:00
optionals.md Replace threads with generic mutexed datastructures. 2025-01-02 16:24:07 -05:00
paths.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
pointers.md Add NULL as a syntax for null values. 2024-11-21 13:00:53 -05:00
ranges.md Update docs to standardize function signature formatting 2024-10-09 13:48:45 -04:00
README.md Add some light docs for mutexed access 2025-01-02 16:29:21 -05:00
reductions.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
rng.md RNG seed should be non-optional 2024-11-03 22:45:49 -05:00
serialization.md Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
sets.md Update docs to reflect deprecation of "&" stack references 2024-10-27 21:14:27 -04:00
structs.md Update docs to reflect deprecation of "&" stack references 2024-10-27 21:14:27 -04:00
tables.md Change table syntax to {key=value} and {:K,V}/{K,V} 2025-01-12 16:49:58 -05:00
text.md Overhaul of Text implementation to be more like Cords and have much 2025-01-23 15:33:56 -05:00
threads.md Add some light docs for mutexed access 2025-01-02 16:29:21 -05: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

Description:
Gets a line of user input text with a prompt.

Signature:

func ask(prompt:Text, bold:Bool = yes, force_tty:Bool = yes -> Void)

Parameters:

  • 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

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

Signature:

func ask(message:Text? = !Text, status:Int32 = 1[32] -> Void)

Parameters:

  • 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!")

say

Description:
Prints a message to the console.

Signature:

func say(text:Text, newline:Bool = yes -> Void)

Parameters:

  • 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

Description:
Pause execution for a given number of seconds.

Signature:

func sleep(seconds: Num -> Void)

Parameters:

  • seconds: How many seconds to sleep for.

Returns:
Nothing.

Example:

sleep(1.5)

fail

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

Signature:

func fail(message:Text -> Abort)

Parameters:

  • message: The error message to print.

Returns:
Nothing, aborts the program.

Example:

fail("Oh no!")

now

Description:
Gets the current time. This is an alias for Moment.now().

Signature:

func now(->Moment)

Parameters:

None.

Returns:
The current moment as a Moment.

Example:

>> now()
= Sun Sep 29 20:12:33 2024