Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for chunesâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #286878 |
Post edited: |
— | about 2 years ago |
Edit | Post #286878 |
Post edited: |
— | about 2 years ago |
Edit | Post #286878 |
Post edited: |
— | about 2 years ago |
Edit | Post #286878 |
Post edited: |
— | about 2 years ago |
Edit | Post #286878 | Initial revision | — | about 2 years ago |
Answer | — |
A: How to create a quotation containing the given token in a syntax word in Factor programming language When you curry or fry a word into a quotation, the word is first placed into a `wrapper` object. This way, when the quotation is called, it places the word literal back on the stack instead of calling the word: ``` 1 2 \ + [ ] 3curry ! [ 1 2 \ + ] call ! 1 2 + (not 3) ``` ... (more) |
— | about 2 years ago |