travis-racket/main.rkt
Greg Hendershott a84e47e80e Initial commit.
2013-07-02 14:12:46 -04:00

9 lines
110 B
Racket

#lang racket
(define (plus1 x)
(add1 x))
(module+ test
(require rackunit)
(check-equal? (plus1 1) 2))