This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head><meta charset="utf-8" /> | |
<title>codecell</title> | |
<style type="text/css"> | |
/*! | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main ( | |
main | |
) where | |
-- | REF für Data Time https://two-wrongs.com/haskell-time-library-tutorial | |
import Data.Time | |
import System.Directory (doesFileExist) | |
data Status = Start | End | Break deriving Show |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This small program was the first real program I wrote in Haskel. The | |
-- only reason why I put it here is the possibility to receive feedback | |
-- about the abundant inconsistencies, unsafeties and not very elegant | |
-- decisions which the code provide to learn and leave them behind next | |
-- time | |
import Options.Applicative | |
import System.Environment | |
import System.Exit | |
import System.Process |