1 ! Copyright (C) 2008 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: interpolate io.streams.string namespaces tools.test locals ;
8 [ "Hello, ${name}." interpolate ] with-string-writer
11 [ "Sup Dawg, we heard you liked rims, so we put rims on your rims so you can roll while you roll." ] [
15 [ "Sup ${name}, we heard you liked ${noun}, so we put ${noun} on your ${noun} so you can ${verb} while you ${verb}." interpolate ] with-string-writer
18 [ "Oops, I accidentally the whole economy..." ] [
19 [let | noun [ "economy" ] |
20 [ I[ Oops, I accidentally the whole ${noun}...]I ] with-string-writer