summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTos Alles <talles@sogyo.nl>2015-10-06 16:50:22 +0200
committerTos Alles <talles@sogyo.nl>2015-10-06 16:50:22 +0200
commitc865c8429dff8484a0a0b01b0f36c51f433605e6 (patch)
tree4ba7b44d0dd209d345cc540fe5421560eee770a4 /src
parentbb905c6710a137bef3179c54a4b7a5aa52cb5b73 (diff)
Tekstbestanden met data voor opgaves toegevoegd, String[][] voor Quotes opgave opgegeven
Diffstat (limited to 'src')
-rw-r--r--src/nl/sogyo/javaopdrachten/quote/Quote.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/nl/sogyo/javaopdrachten/quote/Quote.java b/src/nl/sogyo/javaopdrachten/quote/Quote.java
new file mode 100644
index 0000000..ad21a41
--- /dev/null
+++ b/src/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
+ }
+}