diff options
| author | Shagun Agrawal <agrawalshagun07@gmail.com> | 2024-07-24 22:59:02 +0530 |
|---|---|---|
| committer | Shagun Agrawal <agrawalshagun07@gmail.com> | 2024-07-24 22:59:02 +0530 |
| commit | b17a2610bd3d7293d1ae59c5531121e78859e7ea (patch) | |
| tree | 8f115e357a0e949177aff699c50cbb6c948bdf11 /src/cljcc/cljcc.clj | |
| parent | e81e86e937584a7f2345df43dc93a13793d10dc2 (diff) | |
throw exception in case of parsing failure
passed chapter 1 tests
Diffstat (limited to 'src/cljcc/cljcc.clj')
| -rw-r--r-- | src/cljcc/cljcc.clj | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cljcc/cljcc.clj b/src/cljcc/cljcc.clj index bfecc3b..e687ae9 100644 --- a/src/cljcc/cljcc.clj +++ b/src/cljcc/cljcc.clj @@ -11,7 +11,6 @@ (let [input-file-path (first args)] (try (d/run input-file-path) - (println "success") (catch Exception e (println "Error: " (.getMessage e)) (System/exit 1)) |
