by Lukas Simonson | Nov 8, 2022 | Introduction To Programming
var greeting = “Hello, playground” There are four main pieces to the syntax above. var – This is a keyword, and its telling swift to create a new variable. greeting – This is what we are naming our variable. We can name it whatever we want it...