Name:
Anonymous
2013-03-05 20:42
Well, found the way to quote code. It's awful, though.
> [code](define (fact x)[/code][o][code]
(if (< x 2)
1
(* x (- x 1))))[/code][/o]
(hopefully the soft-hyphens ``escaped'' the BBCode)
Should produce:
(define (fact x)
(if (< x 2)
1
(* x (- x 1))))
That's gonna be leave a mess in my evaluator.