Spectre Flow Code Block

Every Spectre Flow script starts with a flow tag, followed by at least one input node and one output node.

flow {

<comments>

<parameters>

<calendar>

<change log settings>

<input nodes>

<process nodes>

<output nodes>

}

The only required elements in a Flow script are the input and output nodes. For example:

flow {

text-input "Input" {

file "file.txt"

column "Name" {

type "string"

}

column "Number" {

type "integer"

}

}

cbase-output "Output" {

source "Input"

file "output.cbase"

}

}