>
' + input);
input = '';
cmds.push('about - show info about the programmer')
cmds.push('exit - go back to UI mode')
return;
} else if (input == 'about') {
cmds.push('> ' + input);
input = '';
cmds.push('Nash Andre E. Berber')
cmds.push('Born 25th of June 2004')
cmds.push('Bachelor of Science in Information Technology')
return;
} else if (input == 'exit') {
window.history.back();
}else {
cmds.push('> ' + input);
cmds.push(input + ' is not a known command');
input = '';
return;
}
cmds.push('> ' + input);
input = '';
}"
/>