// Opgave 17 - test // Morten Proschowsky import Dato; public class TestDato { public static void main(String[] args) { Dato today = new Dato(2001, 10, 9); System.out.println("ISO: " + today.iso()); System.out.println("Danish: " + today.danish()); System.out.println("Danish text: " + today.danishText()); } }