blob: 6fe88f761dacffc7de6fa569054334d3712a6d2d (
plain)
1
2
3
4
5
6
7
|
module examples.HelloFrege where
import Test.QuickCheck
import buildclient.config.BuildConfig (parseBuildConfigStr)
main = do
text <- readFile "src/main/resources/testconfig.bcc"
println $ show $ parseBuildConfigStr text
|