This is the link to the Lab Description: Lab - RPS
###Class 1
- Bullets are made with asterisks
- You can also order things with numbers
###Class 2
###Class 1
###Class 2
You can add images as well:
You can put blocks of code in here like this:
public int getTotal (Collection<Integer> data) {
int total = 0;
for (int d : data) {
total += d;
}
return total;
}