DAY ONE Flashcards
1
Q
how to print
A
print(“Hello, world!”)
2
Q
//
A
are single line comments
3
Q
/* and end with */
A
are multiline comments.
4
Q
variables
A
var numberOfServingsForRecipe = 4
5
Q
Bool
A
true, false
6
Q
Character
A
a single letter, digit, symbol, or code
7
Q
declaring integer
A
var numberOfWheels: Int = 4
8
Q
first initial character type
A
var firstInitial: Character = “A”
9
Q
can you change variables types
A
no
10
Q
constant
A
fixed values
11
Q
let encouragement =
A
“You can do it!”
12
Q
\n
A
newline
13
Q
replacing with values
A
var name = "Kate" var customizedBirthdayCheer = "Happy Birthday, \(name)!"