An open API service indexing awesome lists of open source software.

https://github.com/michojekunle/hello-world

first self program
https://github.com/michojekunle/hello-world

Last synced: 4 days ago
JSON representation

first self program

Awesome Lists containing this project

README

          

# Hello-World
first self program
package wow;

public final class ClassWow {

public static void main(String[] args) {
// TODO Auto-generated method stub
// TODO data types
boolean enjoy100 = true ;
long theNumberOne = 1L;
float weight = 200.6F;
char firstLetter = 'a';
int studentCount = 142;
double LargeNumber = 1.0E100;
System.out.print(LargeNumber);
System.out.print(theNumberOne);
System.out.print(enjoy100);
System.out.print(weight);
System.out.print(firstLetter);
System.out.print(studentCount);

}

}
package configuration;

public class RunTestApp {

public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("i wanna work with someone");
}
}