Last active
May 27, 2016 06:03
-
-
Save JanneSalokoski/4acf6f2d59b51cac90b1db8961fe0932 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>unicode</title> | |
<script type="text/javascript"> | |
function ๐(๐, ๐) | |
{ | |
if (๐ == "รค" and ๐ != "๐") | |
{ | |
console.log("Mansikka on hedelmรค ๐\n")) | |
} | |
} | |
var mansikka = "รค"; | |
var hedelmรค = "๐": | |
๐(mansikka, hedelmรค); | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
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
def ๐(๐, ๐="๐"): | |
if ๐ == "รค" and ๐ != "๐": | |
print("Mansikka on hedelmรค {}".format("๐")) | |
print() | |
mansikka = input("๐: ") | |
hedelmรค = input("๐: ") | |
๐(mansikka, hedelmรค) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment