Skip to content

Instantly share code, notes, and snippets.

@hrehfeld
Last active January 27, 2017 00:07
Show Gist options
  • Save hrehfeld/f034fb33ee8021ced96203829cca15d0 to your computer and use it in GitHub Desktop.
Save hrehfeld/f034fb33ee8021ced96203829cca15d0 to your computer and use it in GitHub Desktop.
(defun foo (a :Int) 0)
(defun foo (s :Str) "Test")
(defun bar () (foo 0))
---
def foo_int(a) ->int:
return 0
def foo_str(s) ->str:
return 'Test'
def bar() ->int:
return foo_int(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment