Last active
January 27, 2017 00:07
-
-
Save hrehfeld/f034fb33ee8021ced96203829cca15d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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