File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed
examples/movie-micro-service Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module Basics where
44import Gibbon.Prelude
55import Gibbon.PList
66import Gibbon.Vector
7- import Gibbon.Maybe
7+ import Gibbon.Prim
88
99type Text = Vector Char
1010
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module Movies where
33import Gibbon.Prelude
44import Gibbon.PList
55import Gibbon.Vector
6- import Gibbon.Maybe
6+ import Gibbon.Prim
77import Basics
88--
99type Text = Vector Char
Original file line number Diff line number Diff line change 1+ import Gibbon.Prelude
2+ import Gibbon.PList
3+ import Gibbon.Vector
4+ -- import Gibbon.Prim
5+ gibbon_main = let
6+ -- a = fromMaybe 10 (Nothing)
7+ a = 10
8+ _ = printint a
9+ in ()
Original file line number Diff line number Diff line change @@ -306,6 +306,7 @@ stdlibImportPath mod_name = do
306306 modNameToFilename " Gibbon.List" = " Gibbon" </> " List.hs"
307307 modNameToFilename " Gibbon.PList" = " Gibbon" </> " PList.hs"
308308 modNameToFilename " Gibbon.ByteString" = " Gibbon" </> " ByteString.hs"
309+ modNameToFilename " Gibbon.Prim" = " Gibbon" </> " Prim.hs"
309310 modNameToFilename oth = error $ " Unknown module: " ++ oth
310311
311312modImportPath :: ModuleName a -> String -> IO FilePath
You can’t perform that action at this time.
0 commit comments