diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 72e3263..bd491ea 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -17,6 +17,7 @@ - [C++](examples/unofficial/c++.md) - [Dart](examples/unofficial/dart.md) - [Go](examples/unofficial/go.md) + - [Haskell](examples/unofficial/haskell.md) - [Rust](examples/unofficial/rust.md) diff --git a/src/examples/unofficial/haskell.md b/src/examples/unofficial/haskell.md new file mode 100644 index 0000000..82c7584 --- /dev/null +++ b/src/examples/unofficial/haskell.md @@ -0,0 +1,61 @@ +# Haskell + +--- + +## Installation + +The [nekos-best](https://hackage.haskell.org/package/nekos-best) package is available on Hackage and can be added to the .cabal file + +``` + build-depends: + nekos-best ^>= 0.2.0.0, + ... +``` + +## Usage + +Get a neko image + +```haskell +import NekosBest.API (getNbImage) +import qualified NekosBest.Category as C + +main = do + res <- getNbImage C.Neko + print res +``` + +___ + +For random images use `randomNbImage` passing a `RandomGen` value + +```haskell +import NekosBest.API (randomNbImage) +import qualified NekosBest.Category as C + +main = do + gen <- getStdGen + (res, gen') <- randomNbImage gen + print res + +``` +___ + +Downloading an image + +```haskell +import NekosBest.API (getNbImage, downloadNbImage) +import qualified NekosBest.Category as C + +main = do + res <- getNbImage C.Neko + mapM_ (\x -> downloadNbImage x "filename") res +``` + +## About + +> Example added by: [**xQuantx**](https://github.com/xquantxz) +> +> The source code is available at [**GitHub**](https://github.com/xquantxz/nekos-best.hs) +> +> ![NekosBest](https://img.shields.io/hackage/v/nekos-best.svg) ![NekosBest](https://img.shields.io/github/license/xquantxz/nekos-best%2ehs.svg) ![NekoBest](https://img.shields.io/github/issues/xquantxz/nekos-best%2ehs.svg) \ No newline at end of file diff --git a/src/examples/unofficial/rust.md b/src/examples/unofficial/rust.md index 9ae60d8..ff8bb07 100644 --- a/src/examples/unofficial/rust.md +++ b/src/examples/unofficial/rust.md @@ -160,7 +160,7 @@ All functions become blocking when used with the "blocking" feature. ## About -> Example added by: [**Dinu Blanovschi**](https://github.com/dnbln) +> Example added by: [**dnbln**](https://github.com/dnbln) > > The source code is available at [**GitHub**](https://github.com/dnbln/nb-rs) >