Public Gists by asandroq

Gravatar
Wed Nov 04 07:38:47 -0800 2009
1
2
3
(define (legal? move player board)
  (and (eqv? (board-ref board move) *empty*)
       (any? (lambda (dir)
Gravatar
Fri Jul 03 12:45:07 -0700 2009
1
2
3
;; hypothetical Scheme web DSL
;; note that the macro binds the URI variables
;; to local variables
Gravatar
Wed Jun 24 12:17:41 -0700 2009
1
2
3
void sly_io_write_c_string(sly_state_t *S, const char* s, sly_oport_t *port)
{
  const char *p;