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
| /** | |
| * Event loop. | |
| * | |
| * Read details here: | |
| * http://dmitrysoshnikov.com/ecmascript/javascript-the-core-2nd-edition/#job | |
| * | |
| * by Dmitry Soshnikov <dmitry.soshnikov@gmail.com> | |
| */ | |
| /** |
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
| struct Emoji { | |
| var character: String | |
| } | |
| let emojiSums = [ | |
| "😐": ["😊", "😒"], | |
| "😀": ["😊", "😊"], | |
| "😭": ["😒", "😒"], | |
| "🍖": ["🐔", "🔥"] | |
| ].map({(sum: $0, parts: $1.sorted())}) |