Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created September 3, 2015 08:10
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/fa208b06dbd5f1f493d7 to your computer and use it in GitHub Desktop.
Save shigemk2/fa208b06dbd5f1f493d7 to your computer and use it in GitHub Desktop.
# coding:utf-8
def λ(a):
return a
def ほげ(a):
return a
print λ(5)
print ほげ(5)
function λ(a) {
return a;
}
function ほげ(a) {
return a;
}
console.log(λ(5));
console.log(ほげ(5));
(defun λ (a)
a)
(defun ほげ (a)
a)
(λ 5)
(ほげ 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment