3
0
mirror of https://github.com/pragma-/pbot.git synced 2026-02-26 19:27:59 +01:00

Debugging!

This commit is contained in:
Alex Belanger 2024-03-12 18:59:38 -04:00
parent 268b039587
commit 07837b3c3c
No known key found for this signature in database
GPG Key ID: 31736D2B10A5F158

View File

@ -247,18 +247,29 @@ sub main() {
}
# run the language
print "aaa\n";
$lang->process_interactive_edit;
print "bbb\n"
$lang->process_standard_options;
print "ccc\n";
$lang->process_custom_options;
print "ddd\n";
$lang->process_cmdline_options;
print "eee\n";
$lang->preprocess_code;
print "fff\n";
($lang->{'vm-input'}, $lang->{'vm-output'}) = connect_vm($context);
printf "ggg\n";
$lang->execute;
print "hhh\n";
$lang->postprocess_output;
print "iii\n";
$lang->show_output;
print "jjj\n";
$lang->done;
print "kkk\n";
}
main();