mirror of
https://github.com/polysemy-research/polysemy.git
synced 2024-12-12 13:06:18 +03:00
11 lines
210 B
Haskell
11 lines
210 B
Haskell
{-# LANGUAGE BangPatterns #-}
|
|
{-# OPTIONS_GHC -ddump-simpl -dsuppress-all #-}
|
|
|
|
module Main where
|
|
|
|
import Wtf
|
|
import Control.Monad
|
|
|
|
main :: IO ()
|
|
main = let !x = countDown 100000000 in pure ()
|