Skip to content

Instantly share code, notes, and snippets.

@jeandrek
Last active April 3, 2016 03:12
Show Gist options
  • Save jeandrek/c378abd9992f799e1102 to your computer and use it in GitHub Desktop.
Save jeandrek/c378abd9992f799e1102 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
# Jonathan50's Great Decompiler
# for Python 3
#
# http://creativecommons.org/publicdomain/zero/1.0/
# To the extent possible under law, the person
# who associated CC0 with Jonathan50's great decompiler has
# waived all copyright and related or neighboring
# rights to Jonathan50's great decompiler.
import sys
content = sys.stdin.read()
r = "%r" % content
print('asm("%s");' % r[1:len(r)-1],)
Copy link

ghost commented Jan 4, 2016

Noice.

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