Created
September 3, 2015 08:10
-
-
Save shigemk2/fa208b06dbd5f1f493d7 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
# coding:utf-8 | |
def λ(a): | |
return a | |
def ほげ(a): | |
return a | |
print λ(5) | |
print ほげ(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
function λ(a) { | |
return a; | |
} | |
function ほげ(a) { | |
return a; | |
} | |
console.log(λ(5)); | |
console.log(ほげ(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
(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