This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.cmi | |
*.cmx | |
*.o | |
gaidhlig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* szomon :] */ | |
/* | |
* Fallout-like password-guessing game. | |
* | |
* Copyright: Szymon Urbaś | |
* Licensed under the BSD (2-clause) license. | |
*/ | |
#include <ctype.h> |
OlderNewer