loopbreaker-0.1.1.1: test/Experiments.hs
{-# OPTIONS_GHC -fplugin=Loopbreaker #-}
module Experiments where
fact :: Int -> Int
fact 0 = 1
fact n = n * fact (n - 1)
{-# INLINE fact #-}
{-# OPTIONS_GHC -fplugin=Loopbreaker #-}
module Experiments where
fact :: Int -> Int
fact 0 = 1
fact n = n * fact (n - 1)
{-# INLINE fact #-}