Skip to content

Commit

Permalink
added other files used during presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bartaz committed Sep 16, 2013
1 parent 173275f commit d5123cd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Add01To02.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class Add01To02 {
public static void main(String[] args) {
System.out.println("\n> 0.1 + 0.2 == 0.3");
System.out.println( 0.1 + 0.2 == 0.3 );

System.out.println("\n> 0.1 + 0.2");
System.out.println( 0.1 + 0.2 );

System.out.println();
}
}
7 changes: 7 additions & 0 deletions types
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

There are 10 kinds of people
in this world:

Those who understand binary
and those who don't.

0 comments on commit d5123cd

Please sign in to comment.