Skip to content

Instantly share code, notes, and snippets.

@daemonfire300
daemonfire300 / mysterioeser_morgen
Created October 5, 2015 10:25 — forked from jwwk/mysterioeser_morgen
Mysteriös... Jetzt nimmer so arg
https://digitalezeitung.morgenweb.de/ePaper/app/index.html
ConfigOptions.hasUserSubscriptions = true;
ConfigOptions.appMode = "full";
ConfigOptions.loggedByIp = 1;
-- ----------------.
-- Übungsblatt 1 --
-- ----------------.
import Data.Char
import Test.QuickCheck
-- Aufgabe 3
double x = x + x
doubleTwice' x = 2 * double x
doubleTwice x = double x + double x