summaryrefslogtreecommitdiff
path: root/src/main/java/nl/sogyo/javaopdrachten/quote/Quote.java
blob: ad21a412a70956f96514cd83a7005b4b654a8a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
    }
}