You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# NOTE: The `-gdwarf-4` option is set due to the following issues with Clang 14 and Valgrind versions below 3.20: https://bugzilla.mozilla.org/show_bug.cgi?id=1758782
set(CMAKE_CXX_FLAGS_DEBUG"-Og -gdwarf-4") # NOTE: The `-gdwarf-4` option is set due to the following issues with Clang 14 and Valgrind versions below 3.20: https://bugzilla.mozilla.org/show_bug.cgi?id=1758782
| `install` | Copy files into `/usr/local` directly
113
138
114
139
## Usage
115
140
116
141
```
117
-
Meevax Lisp 0.4.779
118
-
119
142
Usage:
120
-
meevax [option...] [file...]
143
+
meevax [OPTION...] [FILE...]
121
144
122
145
Options:
123
-
-e, --evaluate=<string> read and evaluate <string> on interaction-environment
124
-
-h, --help display this help and exit
125
-
-i, --interactive enter an interactive session
126
-
-l, --load=<file> load <file> into interaction-environment
127
-
-v, --version display version information and exit
128
-
-w, --write=<string> same as `(write (read <string>))`
129
-
146
+
-e, --evaluate=STRING read and evaluate STRING on interaction-environment
147
+
-h, --help display this help and exit
148
+
-i, --interactive enter an interactive session
149
+
-l, --load=FILE load FILE into interaction-environment
150
+
-v, --version display version information and exit
151
+
-w, --write=STRING same as `(write (read STRING))`
130
152
```
131
153
132
154
## License
@@ -135,10 +157,18 @@ See [LICENSE](./LICENSE).
135
157
136
158
## References
137
159
138
-
-[1] A.shinn, J.Cowan, A. A. Greckler, editors, "[Revised<sup>7</sup> Report on the Algorithmic Language Scheme](https://bitbucket.org/cowan/r7rs/raw/tip/rnrs/r7rs.pdf)", Technical report, 2013.
| <aid="McCarthy-1960" ></a> John McCarthy | 1960 |[Recursive functions of symbolic expressions and their computation by machine, Part I](https://dl.acm.org/doi/10.1145/367177.367199)|[Communications of the ACM, Volume 3, Issue 4](https://dl.acm.org/toc/cacm/1960/3/4)| 184‑195 |
163
+
| <aid="Landin-1964" ></a> P. J. Landin | 1964 |[The Mechanical Evaluation of Expressions](https://academic.oup.com/comjnl/article/6/4/308/375725)|[The Computor Journal, Volume 6, Issue 4](https://academic.oup.com/comjnl/issue/6/4)| 308‑320 |
164
+
| <aid="Henderson-1980" ></a> Peter Henderson | 1980 |[Functional Programming: Application and Implementation](https://archive.org/details/functionalprogra0000hend/mode/2up)| Prentice Hall ||
165
+
| <aid="Bawden-and-Rees-1988" ></a> Alan Bawden and Jonathan Rees | 1988 |[Syntactic Closures](https://dl.acm.org/doi/10.1145/62678.62687)|[LFP '88: Proceedings of the 1988 ACM Conference on LISP and Functional Programming](https://dl.acm.org/doi/proceedings/10.1145/62678)| 86‑95 |
166
+
| <aid="Clinger-and-Rees-1991a" ></a> William Clinger and Jonathan Rees (Editors) | 1991 |[Revised<sup>4</sup> Report on the Algorithmic Language Scheme](https://dl.acm.org/doi/10.1145/382130.382133)|[ACM SIGPLAN LISP Pointers, Volume IV, Issue 3](https://dl.acm.org/toc/sigplan-lisppointers/1991/IV/3)| 1‑55 |
| <aid="Clinger-1991" ></a> William Clinger | 1991 |[Hygienic Macros Through Explicit Renaming](https://dl.acm.org/doi/10.1145/1317265.1317269)|[ACM SIGPLAN LISP Pointers, Volume IV, Issue 4](https://dl.acm.org/toc/sigplan-lisppointers/1991/IV/4)| 25‑28 |
169
+
| <aid="Clinger-and-Rees-1991b" ></a> William Clinger and Jonathan Rees | 1991 |[Macros That Work](https://dl.acm.org/doi/10.1145/99583.99607)|[POPL '91: Proceedings of the 18th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages](https://dl.acm.org/doi/proceedings/10.1145/99583)| 155‑162 |
170
+
| <aid="Kelsey-Clinger-and-Rees-1998"></a> Rechard Kelsey, William Clinger and Jonathan Rees (Editors) | 1998 |[Revised<sup>5</sup> Report on the Algorithmic Language Scheme](https://dl.acm.org/doi/10.1145/290229.290234)|[ACM SIGPLAN Notices, Volume 33, Issue 9](https://dl.acm.org/toc/sigplan/1998/33/9)| 26‑76 |
171
+
| <aid="Kempf-2001a" ></a> William E. Kempf | 2001 |[A garbage collection framework for C++](https://www.codeproject.com/Articles/912/A-garbage-collection-framework-for-C)|https://www.codeproject.com/Articles/912/A-garbage-collection-framework-for-C||
172
+
| <aid="Kempf-2001b" ></a> William E. Kempf | 2001 |[A garbage collection framework for C++ - Part II](https://www.codeproject.com/Articles/938/A-garbage-collection-framework-for-C-Part-II)|https://www.codeproject.com/Articles/938/A-garbage-collection-framework-for-C-Part-II||
173
+
| <aid="Adams-and-Dybvig-2008" ></a> Michael D. Adams and R. Kent Dybvig | 2008 |[Efficient Nondestructive Equality Checking for Trees and Graphs](https://dl.acm.org/doi/10.1145/1411204.1411230)|[ICFP '08: Proceedings of the 13th ACM SIGPLAN International Conference on Functional Programming](https://dl.acm.org/doi/proceedings/10.1145/1411204)| 179‑188 |
174
+
| <aid="Shinn-Cowan-and-Glecker-2013"></a> Alex Shinn, John Cowan and Arthur A. Gleckler (Editors) | 2013 |[Revised<sup>7</sup> Report on the Algorithmic Language Scheme](https://standards.scheme.org/official/r7rs.pdf)|http://www.scheme-reports.org/||
0 commit comments