This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.omg.PortableServer.POAPackage.AdapterNonExistent; | |
import java.util.Random; | |
public class Anonymus implements Runnable{ | |
String name; | |
int time; | |
Random rand = new Random(); | |
public Anonymus(String s){ | |
name = s; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by moustachion on 07/07/15. | |
*/ | |
public class main { | |
char character = 'C'; | |
double decimal = 1.2; | |
float otherDecimal = 1.323f; | |
String javaIsFun = "Java is fun!"; | |
byte saveMemory = 127; | |
short saveSomeMemory = 9999; |