blob: 436ce8d1924944b7465ca473a9e4918ea6a10afb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
# SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
# Currently the only option is "pretty" for pretty-printing. Set doesn't yet
# allow setting variables in the program.
c
p a
set pretty 0
p a
set pretty 1
p a
set pretty off
p a
set pretty on
p a
set pretty false
p a
set pretty true
p a
set pretty no
p a
set pretty yes
p a
q
|