GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of nex3/arc
Description: Paul Graham's Brand New Lisp
Homepage: http://arclanguage.org
Clone URL: git://github.com/KirinDave/arc.git
arc / brackets.scm
100644 48 lines (31 sloc) 1.251 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
; From Eli Barzilay, eli@barzilay.org
 
;> (require "brackets.scm")
;> (use-bracket-readtable)
;> ([+ _ 1] 10)
;11
 
(module brackets mzscheme
  
; main reader function for []s
; recursive read starts with default readtable's [ parser,
; but nested reads still use the curent readtable:
 
(define (read-square-brackets ch port src line col pos)
  `(make-br-fn ,(read/recursive port #\[ #f)))
  
; a readtable that is just like the builtin except for []s
 
(define bracket-readtable
  (make-readtable #f #\[ 'terminating-macro read-square-brackets))
  
; call this to set the global readtable
 
(provide use-bracket-readtable)
 
(define (use-bracket-readtable)
  (current-readtable bracket-readtable))
  
; these two implement the required functionality for #reader
    
;(define (*read inp)
; (parameterize ((current-readtable bracket-readtable))
; (read inp)))
 
(define (*read . args)
  (parameterize ((current-readtable bracket-readtable))
    (read (if (null? args) (current-input-port) (car args)))))
 
(define (*read-syntax src port)
  (parameterize ((current-readtable bracket-readtable))
    (read-syntax src port)))
 
; and the need to be provided as `read' and `read-syntax'
 
(provide (rename *read read) (rename *read-syntax read-syntax))
 
)