6 lines
94 B
Haskell
6 lines
94 B
Haskell
{-# LANGUAGE TemplateHaskell #-}
|
|
module Bar (bar) where
|
|
import Foo (foo)
|
|
|
|
bar = $foo ++ "bar"
|