SWIFT > variables > Flashcards
first step to creating variable
var
variable names needs to be
single word
start with
letter
value is after
=
make a variable that stores a day and prints it
var day="friday" print(day)
values need to be
same type