runCode function
Runs specified lines of code. It includes parsing, analysis, preprocessing and execution
Implementation
Future<void> runCode(List<String> strs) async {
strs.add('');
lines = await defineMultiline(strs);
// print(lines);
runBlock(0, lines.length, 0);
}