aboutsummaryrefslogtreecommitdiff
path: root/api/builtins.yaml
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-16 17:21:31 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-16 17:21:31 -0400
commit6c088b024d5a768e511392db23231c7fba85d0be (patch)
tree64398c762c6abda52f88dafee887e1905fb52fe2 /api/builtins.yaml
parentc72b0406a32ffc3f04324f7b6c321486762fca41 (diff)
Remove whitespace
Diffstat (limited to 'api/builtins.yaml')
-rw-r--r--api/builtins.yaml16
1 files changed, 8 insertions, 8 deletions
diff --git a/api/builtins.yaml b/api/builtins.yaml
index 848ea2a5..83222660 100644
--- a/api/builtins.yaml
+++ b/api/builtins.yaml
@@ -33,7 +33,7 @@ ask:
example: |
>> ask("What's your name? ")
= "Arthur Dent"
-
+
exit:
short: exit the program
description: >
@@ -56,7 +56,7 @@ exit:
The status code that the program with exit with.
example: |
exit(status=1, "Goodbye forever!")
-
+
getenv:
short: get an environment variable
description: >
@@ -73,7 +73,7 @@ getenv:
example: |
>> getenv("TERM")
= "xterm-256color"?
-
+
print:
short: print some text
description: >
@@ -95,7 +95,7 @@ print:
example: |
print("Hello ", newline=no)
print("world!")
-
+
say:
short: print some text
description: >
@@ -117,7 +117,7 @@ say:
example: |
say("Hello ", newline=no)
say("world!")
-
+
setenv:
short: set an environment variable
description: >
@@ -137,7 +137,7 @@ setenv:
The new value of the environment variable.
example: |
setenv("FOOBAR", "xyz")
-
+
sleep:
short: wait for an interval
description: >
@@ -153,7 +153,7 @@ sleep:
How many seconds to sleep for.
example: |
sleep(1.5)
-
+
fail:
short: abort the program
description: >
@@ -169,7 +169,7 @@ fail:
The error message to print.
example: |
fail("Oh no!")
-
+
USE_COLOR:
short: whether to use colors
type: Bool