Skip to content

Instantly share code, notes, and snippets.

@jqr
Created April 25, 2009 02:24
Show Gist options
  • Save jqr/101462 to your computer and use it in GitHub Desktop.
Save jqr/101462 to your computer and use it in GitHub Desktop.
<script type="text/python">
def pyFunc():
window.alert("hi, i'm python")
</script>
<script type="text/ruby">
def rubyFunc
pyFunc
end
</script>
<script>
rubyFunc();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment