Replace 4 spaces / 1 tab with 4 ";"
It does what it says. I don't know what else to say.
#include <stdio.h>
int main() {
;;;;while (1) {
;;;;;;;;if (1) {
;;;;;;;;;;;;puts("Hello, world!");
;;;;;;;;;;;;break;
;;;;;;;;}
;;;;}
}
- Install ghc and cabal
- Run it via cabal
cabal run . -- <filename>
This does add a garbage to the output so I suggest you install it with
cabal install
If you don't want to do this, ghc --make
ing inside the app/
directory should also work.
Please do not use this seriously. This was written by me for fun and is the most awful haskell code possible.