view bin/runc @ 988:d61a9d60775a

<shachaf> ghc -hide-package base -package haskell98 zalgo.hs -o zalgo
author HackBot
date Sun, 09 Dec 2012 08:15:14 +0000
parents 85729b555d76
children
line wrap: on
line source

#!/bin/bash
t=`tempfile`
echo -e "$@" | gcc -o $t -x c - 2>/dev/null && $t
rm $t