diff --git a/stdio.ts b/stdio.ts index 8329d21..3659ad3 100644 --- a/stdio.ts +++ b/stdio.ts @@ -37,6 +37,10 @@ export const handler = async (line: string) => { case "exit": { Deno.exit(0); - } - } + } + default: + { + console.log(`Unknown commmand "${cmd}".`); + } break; + } } \ No newline at end of file