Skip to content

Commit 3a69799

Browse files
updated presentation
1 parent 9421f20 commit 3a69799

File tree

9 files changed

+30
-0
lines changed

9 files changed

+30
-0
lines changed

Day Two - Android/Examples/1 - Java Intro/placeholder

Whitespace-only changes.

Day Two - Android/Examples/2 - User Interface/placeholder

Whitespace-only changes.

Day Two - Android/Examples/3 - Logic/placeholder

Whitespace-only changes.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
public class IntroductionClass {
2+
3+
public static void main(String[] args) {
4+
System.out.print("Hello, world");
5+
}
6+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
public class StarWars {
3+
4+
// integer
5+
public int NumberOfHandsLuke = 1;
6+
// double
7+
public double CreditsInAccount = 2.46;
8+
// String
9+
public String MyName = "Luke";
10+
// boolean
11+
public boolean DeathStarBlownUp = true;
12+
13+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
public class ZeldaApp {
3+
4+
public static void main(String[] args) {
5+
System.out.print("It is dangerous to go outside. Here, take this!");
6+
}
7+
8+
private static void nothingCanSeeMe() {
9+
System.out.print("It is a secret to everybody.");
10+
}
11+
}

Day Two - Android/Handouts/placeholder

Whitespace-only changes.
Binary file not shown.

Day Two - Android/Slides/placeholder

Whitespace-only changes.

0 commit comments

Comments
 (0)