Skip to content

Instantly share code, notes, and snippets.

@X0nic
Created July 6, 2010 22:56
Show Gist options
  • Save X0nic/466045 to your computer and use it in GitHub Desktop.
Save X0nic/466045 to your computer and use it in GitHub Desktop.
(define (square x)
(* x x))
> (square 3)
9
> (sin 2)
#i0.9092974268256817
> (max 1 2)
2
> (sqrt 4)
2
> (sqrt 2)
#i1.4142135623730951
> (sqrt -1)
0+1i
> (tan 45)
#i1.6197751905438615
@X0nic
Copy link
Author

X0nic commented Jul 6, 2010

(square 3)
9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment