Created
September 3, 2015 08:03
-
-
Save shigemk2/1788b6d7794d8114fc3f 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
<?php | |
function λ($a) { | |
return $a; | |
} | |
function ほげ($a) { | |
return $a; | |
} | |
echo λ(5); | |
echo ほげ(5); |
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
# coding: utf-8 | |
def λ(a) | |
return a | |
end | |
def ほげ(a) | |
return a | |
end | |
puts λ(5); | |
puts ほげ(5); |
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
λ a = a | |
ほげ a = a | |
main = do | |
print $ λ 5 | |
print $ ほげ 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment