Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bogdanp/try-racket-client
A Racket client for Try Racket.
https://github.com/bogdanp/try-racket-client
racket
Last synced: about 2 months ago
JSON representation
A Racket client for Try Racket.
- Host: GitHub
- URL: https://github.com/bogdanp/try-racket-client
- Owner: Bogdanp
- License: bsd-3-clause
- Created: 2020-02-01T11:13:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T08:25:22.000Z (about 2 years ago)
- Last Synced: 2024-12-15T02:03:09.639Z (about 2 months ago)
- Topics: racket
- Language: Racket
- Homepage: https://try-racket.defn.io
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# try-racket-client
A tiny Racket client library for [try-racket].
## Installation
raco pkg install try-racket-client
## Usage
```racket
#lang racket/base(require try-racket-client)
(try-racket-eval 1)
;; => '#hasheq((duration . 0.4970703125) (output . #"") (result . "1"))(try-racket-eval '(begin
(define (fib n)
(if (< n 2)
n
(+ (fib (- n 2))
(fib (- n 1)))))(fib 8)))
;; => '#hasheq((duration . 1.865966796875) (output . #"") (result . "21"))
```## License
try-racket-client is licensed under the 3-Clause BSD license.
[try-racket]: https://github.com/bogdanp/try-racket