aboutsummaryrefslogtreecommitdiff
path: root/api/builtins.yaml
blob: 2eae5340ee9af224441268de6306984c799edca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
ask:
  short: get user input
  description: >
    Gets a line of user input text with a prompt.
  note: >
    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.
  return:
    type: 'Text?'
    description: >
      A line of user input text without a trailing newline, or empty text if
      something went wrong (e.g. the user hit `Ctrl-D`).
  args:
    prompt:
      type: 'Text'
      description: >
        The text to print as a prompt before getting the input.
    bold:
      type: 'Bool'
      default: 'yes'
      description: >
        Whether or not to print make the prompt appear bold on a console.
    force_tty:
      type: 'Bool'
      default: 'yes'
      description: >
        Whether or not to force the use of /dev/tty.
  example: |
    assert ask("What's your name? ") == "Arthur Dent"

exit:
  short: exit the program
  description: >
    Exits the program with a given status and optionally prints a message.
  return:
    type: 'Void'
    description: >
      This function never returns.
  args:
    message:
      type: 'Text?'
      default: 'none'
      description: >
        If nonempty, this message will be printed (with a newline) before
        exiting.
    status:
      type: 'Int32'
      default: 'Int32(1)'
      description: >
        The status code that the program with exit with.
  example: |
    exit(status=1, "Goodbye forever!")

getenv:
  short: get an environment variable
  description: >
    Gets an environment variable.
  return:
    type: 'Text?'
    description: >
      If set, the environment variable's value, otherwise, `none`.
  args:
    name:
      type: 'Text'
      description: >
        The name of the environment variable to get.
  example: |
    assert getenv("TERM") == "xterm-256color"
    assert getenv("not_a_variable") == none

print:
  short: print some text
  description: >
    Prints a message to the console (alias for say()).
  return:
    type: 'Void'
    description: >
      Nothing.
  args:
    text:
      type: 'Text'
      description: >
        The text to print.
    newline:
      type: 'Bool'
      default: 'yes'
      description: >
        Whether or not to print a newline after the text.
  example: |
    print("Hello ", newline=no)
    print("world!")

say:
  short: print some text
  description: >
    Prints a message to the console.
  return:
    type: 'Void'
    description: >
      Nothing.
  args:
    text:
      type: 'Text'
      description: >
        The text to print.
    newline:
      type: 'Bool'
      default: 'yes'
      description: >
        Whether or not to print a newline after the text.
  example: |
    say("Hello ", newline=no)
    say("world!")

setenv:
  short: set an environment variable
  description: >
    Sets an environment variable.
  return:
    type: 'Void'
    description: >
      Nothing.
  args:
    name:
      type: 'Text'
      description: >
        The name of the environment variable to set.
    value:
      type: 'Text'
      description: >
        The new value of the environment variable.
  example: |
    setenv("FOOBAR", "xyz")

sleep:
  short: wait for an interval
  description: >
    Pause execution for a given number of seconds.
  return:
    type: 'Void'
    description: >
      Nothing.
  args:
    seconds:
      type: 'Num'
      description: >
        How many seconds to sleep for.
  example: |
    sleep(1.5)

fail:
  short: abort the program
  description: >
    Prints a message to the console, aborts the program, and prints a stack trace.
  return:
    type: 'Abort'
    description: >
      Nothing, aborts the program.
  args:
    message:
      type: 'Text'
      description: >
        The error message to print.
  example: |
    fail("Oh no!")

USE_COLOR:
  short: whether to use colors
  type: Bool
  description: >
    Whether or not the console prefers ANSI color escape sequences in the output.