Skip to content

Instantly share code, notes, and snippets.

View semahawk's full-sized avatar
💭
no tak

Szymon Urbaś semahawk

💭
no tak
  • Wrocław, Poland
View GitHub Profile
@semahawk
semahawk / gentle.sml
Created November 26, 2013 21:35
This file contains some of the exercises found in "A Gentle Introduction to ML".
(* This file contains some of the exercises found in "A Gentle Introduction to ML" *)
(* right here: http://www.cs.nmsu.edu/~rth/cs/cs471/sml.html *)
(* Compiled using Moscow ML compiler version 2.01 *)
fun double x = 2 * x;
fun inc x = x + 1;
fun adda s = s ^ "a";
fun triple x = 3 * x;
*.cmi
*.cmx
*.o
gaidhlig
@semahawk
semahawk / fallout-passwords.c
Created November 17, 2015 13:47
Fallout-like password-guessing game in C.
/* szomon :] */
/*
* Fallout-like password-guessing game.
*
* Copyright: Szymon Urbaś
* Licensed under the BSD (2-clause) license.
*/
#include <ctype.h>