Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 714 Bytes

DESIGN.md

File metadata and controls

47 lines (28 loc) · 714 Bytes

CompSci 308 : RPS Design

This is the link to the Lab Description: Lab - RPS

Initial Design

###Class 1

  • Bullets are made with asterisks
  1. You can also order things with numbers

###Class 2

CRC Design

###Class 1

###Class 2

You can add images as well:

This is cool, too bad you can't see it

Use Cases

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;
    }