Contents
Syntax
The syntax for
in{options}(string)
@in{options}(string)
Description
The
Options
The following options are available for
option | description |
---|---|
call follows with a block of text to use as an input message | |
do not parse block | |
get user input from file rather than from console | |
option | description |
f++ example
Examples of
in("please enter a name for your project:")
in{b, from-file} { name: age: gender: }
n++ example
Examples of
@in("please enter a name for your project:")
@in(@input("$[contentdir]/input-message.txt"))
@in{from-file}(@input("$[contentdir]/input-template.txt"))
@in{b, from-file} { name: age: gender: }