We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abd485 commit f96b609Copy full SHA for f96b609
timeseries-io/app/Main.hs
@@ -31,5 +31,7 @@ main = do
31
Left err -> die err
32
Right expr -> do
33
print expr
34
- print $ interp store expr 15
+
35
+ -- no instance Show Value
36
+ -- print $ interp store expr 15
37
timeseries-io/timeseries-io.cabal
@@ -52,6 +52,13 @@ extra-doc-files: CHANGELOG.md
52
53
common warnings
54
ghc-options: -Wall
55
56
+ -- to ease development only
57
+ -Wno-unused-matches
58
+ -Wno-unused-top-binds
59
+ -Wno-unused-local-binds
60
+ -Wno-unused-imports
61
62
63
executable timeseries-io
64
-- Import common warning flags.
0 commit comments