lr35902ish racket
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
218B

  1. #lang br
  2. (require "lexer.rkt" brag/support)
  3. (define (make-tokenizer ip [path #f])
  4. (port-count-lines! ip)
  5. (lexer-file-path path)
  6. (define (next-token) (basic-lexer ip))
  7. next-token)
  8. (provide make-tokenizer)