Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am catull on github.
  • I am catull (https://keybase.io/catull) on keybase.
  • I have a public key whose fingerprint is 377D FCB3 5B8C BE66 C130 C221 4E13 3D26 08EB 8E24

To claim this, I am signing this object:

module Edge_test
where
import Edge
import System.IO
import Test.HUnit
import Test.HUnit.Tools
answers :: [ Bool ]
@catull
catull / 2048.c
Last active August 29, 2015 13:58 — forked from justecorruptio/2048.c
// Original file by Jay Chan:
// https://gist.github.com/justecorruptio/9967738
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#define SIDE 4
#define GRID (SIDE * SIDE)