Created
October 18, 2021 15:07
-
-
Save xmhafiz/b4019be83e805a16eb99b645f42d2816 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
struct GameData { | |
static var counter = 0 | |
static var score = 0 | |
static var wins = 0 | |
static var lost = 0 | |
} | |
// usage | |
// write | |
GameData.wins = 5 | |
// read | |
let lostCount = GameData.lost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment