-
-
Save tudormunteanu/06c6b796df3750a505be 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
| // Playground - noun: a place where people can play | |
| import UIKit | |
| class Kpi { | |
| var lineID:Int! | |
| init() { | |
| lineID = 0 | |
| } | |
| func doSomething() { | |
| var fakeJson = "bla bla \(lineID)" | |
| var fakeJson2 = "{\"key\": \(lineID), \"key2\": \"val2\"}" | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment