public BytecodeValue runTest(String s) {
ArrayList<String> strs = new ArrayList<>();
strs.add(s);
TypedAST pair = wyvern.stdlib.Compiler.compileSources("in1", strs);
List<Statement> statements = getResult(pair);
interperter = new Interpreter(statements);
if(PRINTS_ON) {
System.out.println("Instructions:");
for (Statement statement : statements) {
System.out.println(statement.getClass().getSimpleName() + " : "