You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
Racket
26 lines
1.1 KiB
Racket
#lang racket/base
|
|
(require racket/provide racket/list racket/string racket/format racket/match racket/port
|
|
br/define br/syntax br/datum br/debug br/conditional
|
|
(for-syntax racket/base racket/syntax br/syntax br/debug br/define))
|
|
(provide (except-out (all-from-out racket/base) define)
|
|
(all-from-out racket/list racket/string racket/format racket/match racket/port
|
|
br/syntax br/datum br/debug br/conditional)
|
|
(for-syntax (all-from-out racket/base racket/syntax br/syntax br/debug))
|
|
(for-syntax caller-stx shared-syntax with-shared-id with-calling-site-id) ; from br/define
|
|
(filtered-out
|
|
(λ (name)
|
|
(let ([pat (regexp "^br:")])
|
|
(and (regexp-match? pat name)
|
|
(regexp-replace pat name ""))))
|
|
(combine-out (all-from-out br/define))))
|
|
|
|
;; todo: activate at-exp reader by default
|
|
|
|
(define (remove-blank-lines strs)
|
|
(filter (λ(str) (regexp-match #px"\\S" str)) strs))
|
|
|
|
(provide remove-blank-lines)
|
|
|
|
|
|
(module reader syntax/module-reader
|
|
#:language 'br) |