tomo/docs
2024-09-13 20:25:09 -04:00
..
arrays.md Update docs 2024-09-11 15:07:37 -04:00
booleans.md Move docs into one folder 2024-08-19 00:23:02 -04:00
channels.md Deprecate Where and change channel API to use a boolean front value 2024-09-03 03:53:36 -04:00
command-line-parsing.md Document CLI parsing 2024-09-04 16:29:18 -04:00
compilation.md Move docs 2024-08-10 14:26:41 -04:00
enums.md Move docs into one folder 2024-08-19 00:23:02 -04:00
functions.md Document functions 2024-08-19 15:57:06 -04:00
integers.md Unify parsing code to correctly handle parsing integers and numbers with 2024-09-04 16:08:34 -04:00
iterators.md Document iterators 2024-09-11 22:38:13 -04:00
langs.md Add docs for lang 2024-08-19 14:41:04 -04:00
libraries.md Update docs a bit 2024-09-13 13:52:57 -04:00
metamethods.md Update docs 2024-08-19 00:32:12 -04:00
namespacing.md Update docs a bit 2024-09-13 13:52:57 -04:00
nums.md Document deg 2024-08-19 12:46:01 -04:00
operators.md Update operators docs to include various undocumented features like 2024-08-19 20:15:55 -04:00
optionals.md Add optional:or_else(fallback) and optional:or_fail(message) 2024-09-11 23:17:03 -04:00
paths.md Use optionals for iterators 2024-09-11 22:28:43 -04:00
pointers.md Update pointer docs on optionals 2024-09-13 20:25:09 -04:00
ranges.md Move docs into one folder 2024-08-19 00:23:02 -04:00
README.md Add sleep() 2024-09-12 03:20:17 -04:00
sets.md Move docs into one folder 2024-08-19 00:23:02 -04:00
structs.md Document struct(secret) 2024-08-19 14:50:53 -04:00
tables.md Table:get() now uses optional values instead of default or failure modes 2024-09-12 00:55:43 -04:00
text.md Split pattern code into its own file 2024-09-13 13:34:04 -04:00
threads.md Move docs into one folder 2024-08-19 00:23:02 -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

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

Usage:

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.

Usage:

ask(message:Text = "", status:Int32 = 0_i32) -> 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.

Returns:
This function never returns.

Example:

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

say

Description:
Prints a message to the console.

Usage:

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.

Usage:

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.

Usage:

fail(message:Text) -> Abort

Parameters:

  • message: The error message to print.

Returns:
Nothing, aborts the program.

Example:

fail("Oh no!")