Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theodesp/feint
Makes a function ignore its first call
https://github.com/theodesp/feint
racket scheme
Last synced: about 2 months ago
JSON representation
Makes a function ignore its first call
- Host: GitHub
- URL: https://github.com/theodesp/feint
- Owner: theodesp
- License: mit
- Created: 2018-08-23T22:15:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-23T22:30:43.000Z (over 6 years ago)
- Last Synced: 2024-10-31T19:14:30.192Z (3 months ago)
- Topics: racket, scheme
- Language: Racket
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# feint
Makes a function ignore it's first callExample
--```racket
#lang racket
(require "faint.rkt")(define (1+ a)
(+ a 1))
(define add1 (feint 1+) )
(add1 1) ; ignored
(add1 1) ; 2
(add1) ; Throws correctly
```License
---
MIT License © 2018 Theo Despoudis