Skip to content

Instantly share code, notes, and snippets.

@KeenS
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KeenS/9131133 to your computer and use it in GitHub Desktop.
Save KeenS/9131133 to your computer and use it in GitHub Desktop.
$ cim for alisp ccl clisp ecl gcl sbcl do -qe '(print (expt 1.01 365))'
>>>alisp -qe (print (expt 1.01 365))
37.783386 ; Exiting
<<<
>>>ccl -qe (print (expt 1.01 365))
37.783386
<<<
>>>clisp -qe (print (expt 1.01 365))
37.783386
<<<
>>>ecl -qe (print (expt 1.01 365))
37.783386 <<<
>>>gcl -qe (print (expt 1.01 365))
37.78343433288732 <<<
>>>sbcl -qe (print (expt 1.01 365))
37.783302 <<<
$ cim for alisp ccl clisp ecl gcl sbcl do -qe '(print (float (expt 101/100 365)))'
>>>alisp -qe (print (float (expt 101/100 365)))
37.783436 ; Exiting
<<<
>>>ccl -qe (print (float (expt 101/100 365)))
37.783436
<<<
>>>clisp -qe (print (float (expt 101/100 365)))
37.783436
<<<
>>>ecl -qe (print (float (expt 101/100 365)))
37.783436 <<<
>>>gcl -qe (print (float (expt 101/100 365)))
37.783434332887154 <<<
>>>sbcl -qe (print (float (expt 101/100 365)))
37.783436 <<<
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment