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
const jsonObject = { "users" : { | |
"21532761536" : { | |
"user_id" : 21532761536, | |
"name" : "Tom Hanks", | |
} | |
} | |
} | |
const sender_id = "hhh"; | |
const result = jsonObject.users[sender_id]; |

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
//: [Previous](@previous) | |
import UIKit | |
import RxSwift | |
import RxCocoa | |
import PlaygroundSupport | |
// Definition | |
struct GithubRepository { | |
let name: String | |
let starCount: Int |