mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Re-adding Topics to SVN
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class Word {
|
||||
|
||||
int count;
|
||||
String word;
|
||||
|
||||
Word(String s) {
|
||||
word = s;
|
||||
count = 1;
|
||||
}
|
||||
|
||||
void count() {
|
||||
count++;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user