summaryrefslogtreecommitdiff
path: root/tests/bc/globals.txt
blob: 4b20f5725864a6ac3b4b112ffed5a35d369dd696 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
define i(x) {
	ibase=x
	return ibase
}

define o(x) {
	obase=x
	return obase
}

define r(x) {
	scale=x
	return scale
}

i(11)
ibase
o(12)
obase
r(15)
scale