tomo/docs
2024-10-09 13:26:28 -04:00
..
arrays.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
booleans.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
bytes.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
c-interoperability.md Update docs 2024-09-18 15:40:35 -04:00
channels.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -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
datetime.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -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 function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
integers.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
iterators.md Document iterators 2024-09-11 22:38:13 -04:00
langs.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
libraries.md Add -I flag for installing 2024-09-22 14:59:40 -04:00
metamethods.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
namespacing.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
nums.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
operators.md Add a Byte datatype 2024-09-15 15:33:47 -04:00
optionals.md Deprecate :or_else()/:or_fail()/:or_exit() in favor of the or operator 2024-09-16 16:06:19 -04:00
paths.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
pointers.md Update pointer docs on optionals 2024-09-13 20:25:09 -04:00
ranges.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
README.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
reductions.md Document reductions 2024-10-08 23:39:37 -04:00
sets.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
structs.md Document struct(secret) 2024-08-19 14:50:53 -04:00
tables.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
text.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -04:00
threads.md Change function syntax from func(args)->ret to func(args -> ret) 2024-10-09 13:26:28 -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? = !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.

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

now

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

Usage:

now(->DateTime)

Parameters:

None.

Returns:
The current moment as a DateTime.

Example:

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