Skip to content

Instantly share code, notes, and snippets.

@valpackett
Created January 5, 2013 09:58
Show Gist options
  • Save valpackett/4460803 to your computer and use it in GitHub Desktop.
Save valpackett/4460803 to your computer and use it in GitHub Desktop.
ClojureEval
# TryClojure - Eval from clipboard
import clipboard
import requests
d = {'expr': clipboard.get()}
r = requests.get('http://tryclj.com/eval.json', params=d)
if 'result' in r.json:
print(r.json['result'])
else:
print(r.json['message'])
@valpackett
Copy link
Author

Also: ClojureRepl

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