This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE FlexibleInstances, UndecidableInstances, Rank2Types #-} | |
module Antaŭludo ((+), (=<<), (>>=), ($), (<$>), (<), module Antaŭludo, module Prelude.Unicode) | |
where | |
import Control.Monad.ST -- ST → SF | |
import Control.Monad.Loops | |
import System.Environment | |
import Data.STRef | |
import Prelude.Unicode -- de base-unicode-symbols |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE UnicodeSyntax #-} | |
module Main | |
where | |
import Control.Monad.ST | |
import Data.STRef | |
import Prelude.Unicode -- from base-unicode-symbols | |
import System.Environment | |
import Control.Monad.Loops |