Commit 2a3c885e authored by Rohit Prasad's avatar Rohit Prasad

Implement Stock class

parent 311e6709
public class Stock {
String name;
Stock(String name) { this.name = name; }
String getName() { return name; }
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment