shithub: MicroHs

Download patch

ref: 4b386c6b9eec27360dc4c92f859dd235372102ff
parent: 752043cd31efcab73d4c2c40cffdd46811c0e2d2
author: Lennart Augustsson <lennart@augustsson.net>
date: Thu Nov 23 16:07:53 EST 2023

Small tweaks.

--- a/Example.hs
+++ b/Example.hs
@@ -1,4 +1,4 @@
-module Example(main) where
+module Example(fac, main) where
 import Prelude
 
 fac :: Int -> Int
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 # installation prefix
 PREFIX=/usr/local
 #
-CCWARNS= -Wall -Wno-deprecated-declarations
+CCWARNS= -Wall
 CCOPTS= -O3
 CCLIBS= -lm
 CCEVAL= $(CC) $(CCWARNS) $(CCOPTS) src/runtime/eval.c $(CCLIBS)
--