aboutsummaryrefslogtreecommitdiff
path: root/docs/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-05 00:40:52 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-03-05 00:40:52 -0500
commit899e2cd3f1ea5f598947c7862d8f76378191b369 (patch)
treea590027864b899b22bcc9eb921a55910f50de6f2 /docs/README.md
parent9a3162633d358c9dc698b2733027981203514dc9 (diff)
Further shorten docs
Diffstat (limited to 'docs/README.md')
-rw-r--r--docs/README.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/README.md b/docs/README.md
index 8d7e6d02..d427dee7 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -41,7 +41,6 @@ Information about Tomo's built-in types can be found here:
### `ask`
Gets a line of user input text with a prompt.
-**Signature:**
```tomo
func ask(prompt:Text, bold:Bool = yes, force_tty:Bool = yes -> Void)
```
@@ -72,7 +71,6 @@ something went wrong (e.g. the user hit `Ctrl-D`).
### `exit`
Exits the program with a given status and optionally prints a message.
-**Signature:**
```tomo
func ask(message:Text? = !Text, status:Int32 = 1[32] -> Void)
```
@@ -95,7 +93,6 @@ exit(status=1, "Goodbye forever!")
### `say`
Prints a message to the console.
-**Signature:**
```tomo
func say(text:Text, newline:Bool = yes -> Void)
```
@@ -117,7 +114,6 @@ say("world!")
### `sleep`
Pause execution for a given number of seconds.
-**Signature:**
```tomo
func sleep(seconds: Num -> Void)
```
@@ -137,7 +133,6 @@ sleep(1.5)
### `fail`
Prints a message to the console, aborts the program, and prints a stack trace.
-**Signature:**
```tomo
func fail(message:Text -> Abort)
```
@@ -157,7 +152,6 @@ fail("Oh no!")
### `now`
Gets the current time. This is an alias for `Moment.now()`.
-**Signature:**
```tomo
func now(->Moment)
```