From b5b5a40d6f9acda031cb11f0f5118b0f43f8b683 Mon Sep 17 00:00:00 2001 From: Xavier Mitault Date: Wed, 3 Jan 2024 20:11:02 +0100 Subject: [PATCH] Fix lvtrun files compil --- lvtrun/lvtrun.cabal | 2 +- lvtrun/src/Lib.hs | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 lvtrun/src/Lib.hs diff --git a/lvtrun/lvtrun.cabal b/lvtrun/lvtrun.cabal index 4e28df2..d31c93e 100644 --- a/lvtrun/lvtrun.cabal +++ b/lvtrun/lvtrun.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 --- This file has been generated from package.yaml by hpack version 0.35.2. +-- This file has been generated from package.yaml by hpack version 0.36.0. -- -- see: https://github.com/sol/hpack diff --git a/lvtrun/src/Lib.hs b/lvtrun/src/Lib.hs new file mode 100644 index 0000000..3af99b1 --- /dev/null +++ b/lvtrun/src/Lib.hs @@ -0,0 +1,13 @@ +{- +-- EPITECH PROJECT, 2023 +-- Leviator compiler +-- File description: +-- Lib +-} + +module Lib + ( someFunc + ) where + +someFunc :: IO () +someFunc = putStrLn "someFunc"