commit 332e5a88d027fa5f834c4f4ce0159d61ba4b27c0 parent 22a555ed4a677c40415a30ac3c5d9ac62ff4bcde Author: Jared Tobin <jared@jtobin.io> Date: Sat, 5 Oct 2024 19:18:22 +0400 lib: initial skeleton Diffstat:
A | bench/Main.hs | | | 5 | +++++ |
A | lib/Crypto/Hash/SHA512.hs | | | 3 | +++ |
A | test/Main.hs | | | 5 | +++++ |
3 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/bench/Main.hs b/bench/Main.hs @@ -0,0 +1,5 @@ + +module Main where + +main :: IO () +main = pure () diff --git a/lib/Crypto/Hash/SHA512.hs b/lib/Crypto/Hash/SHA512.hs @@ -0,0 +1,3 @@ + +module Crypto.Hash.SHA512 where + diff --git a/test/Main.hs b/test/Main.hs @@ -0,0 +1,5 @@ + +module Main where + +main :: IO () +main = pure ()