Inspired by .
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang racket | |
| ;; https://blog.sigfpe.com/2008/12/mother-of-all-monads.html | |
| (require syntax/parse/define | |
| (only-in data/applicative pure) | |
| (only-in data/monad chain)) | |
| ;; By happy coincidence, pure and chain are the generic versions, | |
| ;; bind and return are specific to the continuation monad below. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* cc -o ucnv-debug ucnv-debug.c `pkg-config --libs --cflags icu-uc` | |
| * SPDX-License-Identifier: (Apache-2.0 OR CC0-1.0) | |
| * SPDX-FileCopyrightText: Philip McGrath <philip@philipmcgrath.com> | |
| */ | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <stdio.h> | |
| #include <errno.h> | |
| #include "unicode/utypes.h" /* Basic ICU data types */ | |
| #include "unicode/ucnv.h" /* C Converter API */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang info | |
| ;; SPDX-License-Identifier: CC0-1.0 | |
| (define quickscript-directory #t) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *~ | |
| \#* | |
| .\#* | |
| .DS_Store | |
| compiled/ | |
| /doc/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *~ | |
| \#* | |
| .\#* | |
| .DS_Store | |
| compiled/ | |
| /doc/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /workspace/ | |
| /layer/ | |
| *~ | |
| \#* | |
| .\#* | |
| .DS_Store | |
| compiled/ | |
| /doc/ |
Example of racket/gui#170
NewerOlder