aboutsummaryrefslogtreecommitdiff
path: root/Week4/src/week4/Week4.java
diff options
context:
space:
mode:
Diffstat (limited to 'Week4/src/week4/Week4.java')
-rw-r--r--Week4/src/week4/Week4.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/Week4/src/week4/Week4.java b/Week4/src/week4/Week4.java
index 9dadd91..039eddb 100644
--- a/Week4/src/week4/Week4.java
+++ b/Week4/src/week4/Week4.java
@@ -5,6 +5,8 @@
*/
package week4;
+import oo15loipe.Loipe;
+
/**
*
* @author cstaps
@@ -15,7 +17,9 @@ public class Week4 {
* @param args the command line arguments
*/
public static void main(String[] args) {
- // TODO code application logic here
+ Loipe l = new Loipe("ssrrsllrs");
+ System.out.println(l.getWidth() + " x " + l.getHeight());
+ System.out.println(l);
}
}