Blame view

circus/src/jcircus/complexcomms/StringAndCounter.java 171 Bytes
8d0dc533f   Madiel de Souza Conserva Filho   first
1
2
3
4
5
6
7
8
9
10
  package jcircus.complexcomms;
  
  public class StringAndCounter {
  	String str = "";
  	int counter = 0;
  	public StringAndCounter () {
  		str = "";
  		counter = 0;
  	}
  }