noop.addLibrary(io);
consoleClazz = new Clazz("Console");
io.addClazz(consoleClazz);
printMethod = new Method("print");
consoleClazz.addBlock(printMethod);
Parameter printArg = new Parameter("s");
printMethod.addParameter(printArg);
booleanClazz = new Clazz("Boolean");
lang.addClazz(booleanClazz);
intClazz = new Clazz("Integer");
lang.addClazz(intClazz);
integerPlus = new Method("+");
intClazz.addBlock(integerPlus);
intClazz.addComment(new Comment("Elements may have symbols in their names." +
" Tools may choose to render this as infix",
System.getProperty("user.name"), new Instant()));
integerEquals = new Method("==");
intClazz.addBlock(integerEquals);
Parameter integerPlusArg = new Parameter("i");
integerPlus.addParameter(integerPlusArg);