mirror of
https://github.com/Astatin3/Code.org-Final-Projects.git
synced 2026-06-08 16:08:02 -06:00
5 lines
93 B
Java
5 lines
93 B
Java
|
|
// Object structure for a word
|
||
|
|
public class word {
|
||
|
|
public int count;
|
||
|
|
public String str;
|
||
|
|
}
|