Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 505 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 505 Bytes

formatted-string

Racket Test

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

#lang formatted-string racket/base

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

To escape from this, write "\$" to get "$"!