Skip to content

dannypsnl/formatted-string

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 "$"!

Releases

No releases published

Languages