Hello and welcome to the next step of our selection process. The goal is to determine if we are a good match.
mini GitHub API client
First screen: owner (organization or user) name input and submit button.
Hello and welcome to the next step of our selection process. The goal is to determine if we are a good match.
mini GitHub API client
First screen: owner (organization or user) name input and submit button.
| // Variables just contain an integer. We can have a maximum of `Int.max` variables in our program. ¯\_(ツ)_/¯ | |
| private struct Var { | |
| static var freshVarIx = 0 | |
| let ix: Int | |
| init() { | |
| Var.freshVarIx+=1 | |
| ix = Var.freshVarIx | |
| } | |
| } |