We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
user=> (def f (sci/eval-string "(fn [] (Math/sin 3.14))" {:classes {'Math Math}})) #'user/f user=> user=> (defn foo [] (Math/sin 3.14)) #'user/foo user=> (time (dotimes [i 1000000] (f))) "Elapsed time: 2171.718646 msecs" nil user=> (time (dotimes [i 1000000] (foo))) "Elapsed time: 18.466058 msecs" nil
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: