Replies: 1 comment
-
Exciting! On my branch I have the following working: data Node = Node { i :: Main.Yarr, label :: [Text] }
data Yarr = Yes | No
main = [
Main.Node { i = Main.Yes, label = ["OK, go!", Error.error "Nooo", "Done." ] },
Main.Node { i = Main.Yes, label = ["OK, go!", Error.error "Nooo", "Done." ] }
] with ConsP
(RecordP
"Main.Node"
[ ("i", ConstructorP "Yes" Nothing)
, ( "label"
, ConsP
(TextP "OK, go!")
(ConsP
(ExceptionP
ErrorCall
(TextP
"Nooo\nCallStack (from HasCallStack):\n error, called at /home/chris/Work/chrisdone/hell/src/Hell.hs:1455:6 in main:Main"))
(ConsP (TextP "Done.") NilP)))
])
(ConsP
(RecordP
"Main.Node"
[ ("i", ConstructorP "Yes" Nothing)
, ( "label"
, ConsP
(TextP "OK, go!")
(ConsP
(ExceptionP
ErrorCall
(TextP
"Nooo\nCallStack (from HasCallStack):\n error, called at /home/chris/Work/chrisdone/hell/src/Hell.hs:1455:6 in main:Main"))
(ConsP (TextP "Done.") NilP)))
])
NilP) With this I can generate a pretty-printed text output, but also a vty-based lazily-browsable interface. When I add a presentation for |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It occurred to me recently that my adventures in present that I ultimately decided wasn’t tenable in Haskell, might actually be tenable for Hell:
—eval
type of function, to show any value that a Hell script can conceive of.Hell.debug :: a -> Text
(note, no type class constraint) is also viable, though would depart from Haskell, so I don’t like it. It would break parametricity which is ugly. Whereas a mere command line flag would be ok.I was watching a video about NuShell and thought, that kind of interactive display of data is actually quite viable for Hell if I combine the architectural designs from my present package and the helpful limitations of Hell.
Beta Was this translation helpful? Give feedback.
All reactions