Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created September 3, 2015 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/1788b6d7794d8114fc3f to your computer and use it in GitHub Desktop.
Save shigemk2/1788b6d7794d8114fc3f to your computer and use it in GitHub Desktop.
<?php
function λ($a) {
return $a;
}
function ほげ($a) {
return $a;
}
echo λ(5);
echo ほげ(5);
# coding: utf-8
def λ(a)
return a
end
def ほげ(a)
return a
end
puts λ(5);
puts ほげ(5);
λ 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