ghci

Crates.ioghci
lib.rsghci
version0.1.0
sourcesrc
created_at2023-07-23 20:54:54.042203
updated_at2023-07-23 20:54:54.042203
descriptionManage and communicate with ghci (Haskell's GHC interpreter)
homepage
repositoryhttps://github.com/basile-henry/ghci-rs
max_upload_size
id923986
size15,410
Basile Henry (basile-henry)

documentation

README

ghci CI Status crates.io docs.rs

A crate to manage and communicate with ghci sessions

let mut ghci = Ghci::new()?;
let out = ghci.eval("putStrLn \"Hello world\"")?;
assert_eq!(&out.stdout, "Hello world\n");

License

MIT License

Copyright 2023 Basile Henry

Commit count: 6

cargo fmt