You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do
display("> ");
line = esh_read_line();
args = esh_split_line(line);
status = esh_exec(args);
free(line);
free(args);
// Huh. CNoEvil probably needs a way to neaten this up.
end While status);
The end of the loop requires a hanging ); which is just irritating.
The text was updated successfully, but these errors were encountered:
Do-While loops kinda suck at the moment.
The end of the loop requires a hanging
);
which is just irritating.The text was updated successfully, but these errors were encountered: