shithub: MicroHs

Download patch

ref: c9321a91358f39ccaa15420cd6224a497f38c461
parent: 4e159c62a8c00ca625d3863d65916467bb7365eb
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Thu Feb 8 13:56:43 EST 2024

Don't export IORef representation.

--- a/lib/Data/IORef.hs
+++ b/lib/Data/IORef.hs
@@ -1,4 +1,10 @@
-module Data.IORef(module Data.IORef) where
+module Data.IORef(
+  IORef,
+  newIORef,
+  readIORef,
+  writeIORef,
+  modifyIORef,
+  ) where
 import Primitives
 import Data.Eq
 
--