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
import Cocoa | |
import PlaygroundSupport | |
PlaygroundPage.current.needsIndefiniteExecution = true | |
struct ChatMessage { | |
let id: String | |
let senderId: String | |
let message: String | |
let timestamp: Double |
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
import Cocoa | |
fileprivate let modifierMap = [ | |
"cmd": "⌘", | |
"command": "⌘", | |
"shift": "⇧", | |
"control": "^", | |
"ctrl": "^", | |
"opt": "⌥", | |
"option": "⌥", |
OlderNewer