Created
July 6, 2010 22:56
-
-
Save X0nic/466045 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define (square x) | |
(* x x)) | |
> (square 3) | |
9 | |
> (sin 2) | |
#i0.9092974268256817 | |
> (max 1 2) | |
2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> (sqrt 4) | |
2 | |
> (sqrt 2) | |
#i1.4142135623730951 | |
> (sqrt -1) | |
0+1i | |
> (tan 45) | |
#i1.6197751905438615 |
Author
X0nic
commented
Jul 6, 2010
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment