Small doc fixes and many tiny edits. (#439)
This commit is contained in:
committed by
Peli de Halleux
parent
edaf2b0403
commit
78d1ce26be
@ -52,7 +52,7 @@ View projects at the following sites for inspiration:
|
||||
* http://make.techwillsaveus.com/bbc-microbit
|
||||
* http://microbit.org/ideas/
|
||||
* https://twitter.com/MicroMonstersUK
|
||||
* https://pxt.microbit.org/projects
|
||||
* [Projects](/projects)
|
||||
|
||||
## Examples
|
||||
|
||||
|
@ -8,7 +8,7 @@ Take this time to review the concepts we have covered so far.
|
||||
|
||||
The micro:bit is very effective at bringing real things to life. It can be supported in a cardboard holder, attached to a wand, or even sewn into fabric. The design thinking process is a helpful way to gather more information about the person who will be using whatever you are designing.
|
||||
|
||||
## Processing and Algorithms
|
||||
## Processing and algorithms
|
||||
|
||||
The code you write for the micro:bit processes data from its inputs, and outputs it in some way. An algorithm is a series of specific instructions, or steps, that solve a problem or accomplish a task.
|
||||
|
||||
@ -20,6 +20,6 @@ Variables store information so that it can be accessed or referenced later. Some
|
||||
|
||||
Conditional statements tell the computer when to do something. They are used to create branches, or decision points, where a program can choose one path or the other based on the values of certain variables, or based on data from the micro:bit’s inputs. Conditional statements can be nested inside one another so that both conditions must be true in order for the enclosed statements to run.
|
||||
|
||||
## Iteration and Looping
|
||||
## Iteration and looping
|
||||
|
||||
Portions of your code can be made to run over and over by using a Repeat or a For block loop. This allows you to iterate over several different variables, or items in a group, and do something to each of them. You can also combine a conditional statement an
|
Reference in New Issue
Block a user