14 lines
174 B
Text
14 lines
174 B
Text
-- in some movie script
|
|
on asin (x)
|
|
res = atan(sqrt(x*x/(1-x*x)))
|
|
if x<0 then res = -res
|
|
return res
|
|
end
|
|
|
|
on double (x)
|
|
return x*2
|
|
end
|
|
|
|
on triple (x)
|
|
return x*3
|
|
end
|