Skip to content

Instantly share code, notes, and snippets.

View razmanugget's full-sized avatar
🐾
To blave

razmanugget razmanugget

🐾
To blave
  • Stresa, Italy
View GitHub Profile
@razmanugget
razmanugget / basics1
Last active October 23, 2022 20:48
Basics #bools #mark #swift
// MARK: - BOOLS
// declaration - create but don't initialize
var isOrange: Bool
// create and initialize with an initial value
var isApple = true
// determine equality and assign value to constant -> false
let guess = "dog"