diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/math.ur | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/math.ur b/tests/math.ur index 8892fffe..5f8843de 100644 --- a/tests/math.ur +++ b/tests/math.ur @@ -11,4 +11,12 @@ fun main () = return <xml><body> {[(log 0.1)]} <button value="Exp of 0.1!" onclick={fn _ => alert (show (exp 0.1))}/> {[(exp 0.1)]} + <button value="asin of 0.1!" onclick={fn _ => alert (show (asin 0.1))}/> + {[(asin 0.1)]} + <button value="acos of 0.1!" onclick={fn _ => alert (show (acos 0.1))}/> + {[(acos 0.1)]} + <button value="atan of 0.1!" onclick={fn _ => alert (show (atan 0.1))}/> + {[(atan 0.1)]} + <button value="atan2 of 0.1 and -0.2!" onclick={fn _ => alert (show (atan2 0.1 -0.2))}/> + {[(atan2 0.1 -0.2)]} </body></xml> |