Code that is available for developing on other platforms, not just those designed by Apple.
Back
for
Front
keyword for writing a for loop
Back
{ }
Front
indicates that this line of code is a condition
Back
( )
Front
indicates that this line of code is a command
Back
moveForward( )
Front
Example of a command
Back
Swift
Front
Newest programming language from Apple that's used to create apps.
Back
for i in 1...4
Front
Example of a for loop
Back
Coding
Front
Telling the computer what to do.
Back
if/else statements
Front
one or the other is DEFINITELY true
Back
Debugging
Front
The process of identifying and fixing the error.
Back
Command
Front
A specific action for the computer to perform.
Back
Conditional code
Front
Code that runs when specific conditions are true
Back
onAGem{ }
Front
Example of a condition
Back
if
Front
keyword for writing conditional code
Back
Sequence
Front
The order in which the commands are given.
Back
func
Front
keyword for naming a function
Back
Function
Front
A collection of commands grouped together and given a name. The set of commands can then be run with just the name of the function whenever that set is needed.
Back
if/else if statements
Front
one or none may be true
Back
Developers
Front
People who write code to build their own apps and games.
Back
Algorithm
Front
a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer.
Back
func turnRight( )
Front
Example of naming a function
Back
Bug
Front
An error in your code.
Back
For loop
Front
Runs a block of code over and over for a set number of times.