factor/extra/backticks/backticks.factor

12 lines
323 B
Factor
Raw Normal View History

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