This file contains 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
var Switch = function(expr){ | |
return new YetSucceed(expr); | |
} | |
var Succeed = { case : function(cond,proc){ return this; } }; | |
var YetSucceed = function(expr){}; | |
YetSucceed.prototype.case = function(cond, proc){ | |
if(cond){ | |
proc(); |
This file contains 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
function cond(){ | |
for(var i in arguments ){ | |
if( arguments[i][0] ){ | |
arguments[i][1](); | |
break; | |
} | |
} | |
} | |
var x = -1; |
This file contains 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
var Switch = function(expr){ | |
this.successed = false; | |
this.case = function(cond, proc){ | |
if( !this.successed && cond === expr){ | |
this.successed = true; | |
proc(); | |
} | |
return this; | |
} | |
} |
This file contains 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
class CFizzBuzz{ | |
public static function main(){ | |
fizzbuzz(); | |
} | |
macro public static function fizzbuzz(){ | |
var fizzbuzzText : String = "\n"; | |
for( i in 1...100 ){ | |
fizzbuzzText += if( i % 15 == 0 ){ | |
"FizzBuzz "; |
This file contains 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
(ql:quickload :optima) | |
(defpackage :monad | |
(:use :common-lisp :optima) | |
(:export :bind :just :none :do-monad)) | |
(in-package :monad) | |
;; return | |
(defgeneric unit-m (type x)) | |
;; >>= |
NewerOlder