Compare commits

...

4 Commits

Author SHA1 Message Date
Ben Greenman
a8c4fd4fcf ** turn off logging 2016-07-26 13:56:53 -04:00
Ben Greenman
5881bd94e0 [test] new regexp test 2016-07-07 13:38:24 -04:00
Ben Greenman
c27e1b2efa ** stop building on 6.4 2016-06-27 19:02:04 -04:00
Ben Greenman
8550b9aa83 flag about the bad state of things 2016-06-27 16:02:54 -04:00
4 changed files with 9 additions and 2 deletions

View File

@ -4,7 +4,7 @@ env:
global:
- RACKET_DIR=~/racket
matrix:
- RACKET_VERSION=6.4
- RACKET_VERSION=6.5
- RACKET_VERSION=HEAD
before_install:

View File

@ -4,6 +4,8 @@ trivial
[![Coverage Status](https://coveralls.io/repos/bennn/trivial/badge.svg?branch=master&service=github)](https://coveralls.io/github/bennn/trivial?branch=master)
[![Scribble](https://img.shields.io/badge/Docs-Scribble-blue.svg)](http://docs.racket-lang.org/trivial/index.html)
__WARNING:__ things are current in a heavy development state. See the [6.4 release branch](https://github.com/bennn/trivial/tree/6.4) for a stable version.
This [Typed Racket](http://docs.racket-lang.org/ts-reference/) library provides "smarter" versions of standard library functions.
For example:

View File

@ -83,6 +83,11 @@
(U #f (List String)))
'("hello"))
(check-equal?
(ann (regexp-match: "\\(a+\\)([ab]*)" "(aa)bb")
(U #f (List String String)))
'("(aa)bb" "bb"))
(check-equal?
(ann
(regexp-match: "hello" "world")

View File

@ -9,7 +9,7 @@
;; =============================================================================
(: *TRIVIAL-LOG* (Parameterof Boolean))
(define *TRIVIAL-LOG* (make-parameter #t))
(define *TRIVIAL-LOG* (make-parameter #f))
(: *STOP-LIST* (Parameterof (Listof Identifier)))
(define *STOP-LIST* (make-parameter '()))