-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScheme+.rkt
167 lines (112 loc) · 2.89 KB
/
Scheme+.rkt
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
;; This file is part of Scheme+
;; Copyright 2023-2024 Damien MATTEI
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;; version 9.8
;; use: (require Scheme+)
;; note : seems (require Scheme+/def-nfx) should be required separately in REPL
(module Scheme+ racket/base
(provide
;; definition and block
def return return-rec
define
define-infix
<+ +>
⥆ ⥅
:+ +:
declare
$> ; begin
$+> ; (let () ...
begin-def
;; infix notation,indexing,slicing and assignment
: ; slice symbol
$nfx$ ; infix
$bracket-apply$ ; [ ]
<- ->
← →
:= =:
;; multiple values assignment
<v v>
⇜ ⇝
;; control: if then else
if
;; iteration
for continue break
for-basic
for-next
for-basic/break
for-basic/break-cont
for/break-cont
for-each-in
;; sequence
in-range
reversed
;; control
condx
repeat
do
unless
while
;; operators
<> ≠
**
%
<< >>
&
∣ ; warning: this pipe could be a special character (different from keyboard stroke)
;; overloading
define-overload-procedure
overload-procedure
define-overload-existing-procedure
overload-existing-procedure
define-overload-operator
overload-operator
define-overload-existing-operator
overload-existing-operator
define-overload-n-arity-operator
overload-n-arity-operator
define-overload-existing-n-arity-operator
overload-existing-n-arity-operator
overload-square-brackets
find-getter-for-overloaded-square-brackets
find-setter-for-overloaded-square-brackets
)
(require
(only-in racket/base [define define-scheme])
;; definition and block
Scheme+/def
Scheme+/def-nfx ; infix define
Scheme+/declare
Scheme+/block
;; infix notation,indexing,slicing and assignment
Scheme+/slice
Scheme+/bracket-apply
Scheme+/assignment
Scheme+/nfx
;; control: if then else
Scheme+/if-then-else
;; iteration
Scheme+/for_next_step
Scheme+/range
;; control
Scheme+/condx
Scheme+/when-unless
Scheme+/while-do
Scheme+/repeat-until
;; operators
Scheme+/not-equal
Scheme+/exponential
Scheme+/bitwise
Scheme+/modulo
;; overloading
Scheme+/overload
) ; end import
) ; end library