Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add unicode-lambda recipe #62

Merged
merged 1 commit into from
Sep 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions recipes/unicode-lambda.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Unicode lambda

## Problem

Instead of

`(lambda (a b c) (* a (+ b c))`

you'd like to type

`(λ (a b c) (* a (+ b c)))`

i.e. use the Unicode greek letter lambda in your Scheme code.

## Solution

### Using import renaming

R6RS:

```Scheme
(import (rename (only (rnrs base) lambda) (lambda λ)))
```

R7RS:

```Scheme
(import (rename (only (scheme base) lambda) (lambda λ)))
```

### Using a macro

```Scheme
(define-syntax λ (syntax-rules () ((λ . rest) (lambda . rest))))
```

or the non-standard:

```Scheme
(define-macro (λ . rest) `(lambda ,@rest))
```

### Spelling out `lambda` in source files but displaying `λ` on screen

See [Display Unicode symbols in Emacs](https://cookbook.scheme.org/display-unicode-symbols-in-emacs/).

### Safely storing `λ` in text files

`λ` is one Unicode codepoint, so changing the Unicode normalization
form does not change the way `λ` characters are encoded. In R7RS `λ`
can also be escaped using vertical bar syntax as `|\x3bb;|`.

## See also

[Unicode lambda at Scheme Surveys](https://doc.scheme.org/surveys/unicode-lambda/)
3 changes: 2 additions & 1 deletion www-index.scm
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
("Macros"
"bind-optional-arguments"
"check-for-symbol-in-syntax-rules"
"define-symbols")
"define-symbols"
"unicode-lambda")

("Tool integrations"
"display-unicode-symbols-in-emacs"))