package christie.example.HelloWorld; import christie.annotation.Take; import christie.codegear.CodeGear; import christie.codegear.CodeGearManager; public class HelloWorldCodeGear extends CodeGear { @Take String helloWorld; @Override protected void run(CodeGearManager cgm) { System.out.print(helloWorld + " "); if(helloWorld.equals("world")) return; cgm.setup(new HelloWorldCodeGear()); } }