Skip to content

Instantly share code, notes, and snippets.

@suyenish
Created November 30, 2021 04:41
Show Gist options
  • Save suyenish/1ab5fae1a861952d9b4d1d372d32fc4d to your computer and use it in GitHub Desktop.
Save suyenish/1ab5fae1a861952d9b4d1d372d32fc4d to your computer and use it in GitHub Desktop.
practicing variables
import UIKit
var greeting = "Hello, playground"
var myAge = 19
myAge = 20
var surname = "Suienish"
let myName = "Daulet"
print(greeting)
print(myAge)
print(21)
print(myName , myAge)
print(surname + " " + myName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment