Initial Commit
Initial commit of project.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package dataStructures;
|
||||
|
||||
public class KittyPoll
|
||||
{
|
||||
public String choice;
|
||||
public int votes;
|
||||
|
||||
public KittyPoll(String choice)
|
||||
{
|
||||
this.choice = choice;
|
||||
votes = 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user