From 746abe53eaacaf574b6db518bbc03a30056cd0d3 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Thu, 22 Aug 2024 14:58:05 -0300 Subject: [PATCH] Fix weird bug --- src/main.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cr b/src/main.cr index 116768e..a15edb9 100644 --- a/src/main.cr +++ b/src/main.cr @@ -92,4 +92,5 @@ if options["-f"] outf = File.open(options["-o"].as(String), "w") end formatter.format(input, lexer, outf) + outf.close end