Adding MagicAccessorImpl class for GroovyMagic.
[jpf-core.git] / examples / Empty.groovy
index 4c130beb00c341293b3ef1514acd28143e5b1460..77aec71547e62db4a099b963f6992145d4dd9926 100644 (file)
@@ -22,10 +22,14 @@ class Empty {
 
        static void main(String[] args) {               
 
-               //Empty emp = new Empty();
+               Empty emp = new Empty();
                //int result = emp.installed();
                //println result;
-               //emp.installed()
+               emp.installed()
+               int x = 5;
+               int y = 6;
+               int result = x + y;
+               println result
                println "End of call!"
        }       
 }