From bdb77b272a3fdcda21e327ecec27e08687acf64f Mon Sep 17 00:00:00 2001 From: Sekulum Forka Date: Tue, 11 May 2021 11:05:35 +0200 Subject: [PATCH] Main loop: Execute is now called instead of eval --- src/fsh.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fsh.nim b/src/fsh.nim index e2f4e12..73ce42a 100644 --- a/src/fsh.nim +++ b/src/fsh.nim @@ -166,4 +166,4 @@ proc eval(cmd: string): string = when isMainModule: let stdinstrm = stdin.newFileStream while not stdinstrm.atEnd(): - stdinstrm.readCommand.eval.echo + stdinstrm.readCommand.execute.echo