Artifact 254cc82697a90089a830319be74775b8a514f03fb27bc82aa8f9d3fefe2043a0:
- File lib/bot-gambit.scm — part of check-in [1521429541] at 2018-09-24 23:18:14 on branch trunk — initial commit (user: lexi, size: 445) [annotate] [blame] [check-ins using]
(define-macro (rule . body) (define (make-cases ct body acc) (if (eq? body '()) acc (make-cases (+ ct 1) (cdr body) (cons (list (list ct) (cons 'string-append (car body))) acc)))) (list 'define (car body) (cons 'case (cons (list 'random-integer (length (cdr body))) (make-cases 0 (cdr body) '()) )))) (define (pick ar) (vector-ref ar (random-integer (vector-length ar)))) (random-source-randomize! default-random-source)