Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 381 Bytes

File metadata and controls

12 lines (9 loc) · 381 Bytes

string-extension

All works moved to https://github.com/dannypsnl/formatted-string, which provided even better experience by using meta-reader.

The language extends racket string to formatted string, let's look at the following example.

#lang string-extension

(define-values (x y z) (values 1 2 3))
"x = $x, y = $y, z = $z, (+ x y z) = $(+ x y z)"