@out.in.filename = "numberTwo.csv" // Notice that in is the *output's* name. Without using this annotation, the output filename would be called "in"
x = StringInput(content="2")
@out.in.filename = "second"
y = StringInput(content="2")
@out.out.filename = "numberTwoOUTPUT.csv"
OUTPUT(x.in)
result_fnann/
├── output
│ └── numberTwoOUTPUT.csv
├── _state
├── x
│ ├── _command
│ ├── _launch
│ └── numberTwo.csv
└── y
├── _command
├── _launch
└── second