You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
156 B
22 lines
156 B
7 months ago
|
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
|