2015-04-17 20:40:12 -04:00
|
|
|
! Copyright (C) 2015 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license
|
2015-04-20 18:48:56 -04:00
|
|
|
USING: fry io io.encodings.utf8 interpolate io.launcher
|
|
|
|
multiline sequences ;
|
2015-04-17 20:40:12 -04:00
|
|
|
IN: backticks
|
|
|
|
|
|
|
|
SYNTAX: `
|
2015-04-20 18:48:56 -04:00
|
|
|
"`" parse-multiline-string '[
|
|
|
|
_ interpolate>string
|
|
|
|
utf8 [ contents ] with-process-reader
|
|
|
|
] append! ;
|