diff options
Diffstat (limited to 'src/main/java')
| -rw-r--r-- | src/main/java/nl/sogyo/javaopdrachten/quote/Quote.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/nl/sogyo/javaopdrachten/quote/Quote.java b/src/main/java/nl/sogyo/javaopdrachten/quote/Quote.java new file mode 100644 index 0000000..ad21a41 --- /dev/null +++ b/src/main/java/nl/sogyo/javaopdrachten/quote/Quote.java @@ -0,0 +1,16 @@ +package nl.sogyo.javaopdrachten.quote; + +public class Quote { + String[][] quotes = { + {"galileo", "eppur si muove"}, + {"achimedes", "eureka!"}, + {"erasmus", "in regione caecorum rex est luscus"}, + {"socrates", "I know nothing except the fact of my ignorance"}, + {"rené descartes", "cogito, ergo sum"}, + {"sir isaac newton", "if I have seen further it is by standing on the shoulders of giants"} + }; + + public static void main(String... args) { + //TODO + } +} |
