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
- Host: GitHub
- URL: https://github.com/michojekunle/hello-world
- Owner: michojekunle
- Created: 2021-09-08T14:01:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-12T03:40:22.000Z (about 4 years ago)
- Last Synced: 2025-01-13T04:42:30.250Z (9 months ago)
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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");
}
}