FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
first-java-class/HelloWorld.java at master · abk-chicago/first-java-class · GitHub
This repository was archived by the owner on Jan 23, 2019. It is now read-only.
abk-chicago
/
first-java-class
Public archive
forked from
ga-adi/first-java-class
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
first-java-class
/
HelloWorld.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (17 loc) · 676 Bytes
Breadcrumbs
first-java-class
/
HelloWorld.java
Copy path
File metadata and controls
17 lines (17 loc) · 676 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// This is my first Java app :)
// Week 1, day 2 of ADI course
// Doing great so far!
public
class
HelloWorld
{
// main = starting point
// all code begins here
// when we run our app,
// main() is run first.
public
static
void
main
(
String
[]
args
) {
System
.
out
.
println
(
"Hi there, I am Andrea."
);
System
.
out
.
println
(
"I don't like rainy days."
);
System
.
out
.
println
(
"I have 8 pets at home: 5 cats, 2 small dogs, and a bird."
);
System
.
out
.
println
(
"I have 2 daughters: Karina and Hana."
);
System
.
out
.
println
(
"They are 21 and 15 years old."
);
System
.
out
.
println
(
"It's almost lunch time - getting hungry."
);
}
}
Back
|
FazBrowse Home
|
New Git URL