aboutsummaryrefslogtreecommitdiff
path: root/semestre 4/java/tme/tp2/TestAdresseWeb.java
blob: 8bb38336b7fc8f06057ba640de34a9631733bbe0 (plain)
1
2
3
4
5
6
7
public class TestAdresseWeb {
    public static void main(String[] args) {
        System.out.println(new AdresseWeb("hey"));
        System.out.println(new AdresseWeb("hey", "/"));
        System.out.println(new AdresseWeb("https", "hey", "/"));
    }
}