22 lines
156 B
Plaintext
22 lines
156 B
Plaintext
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
|