title: Start
---
<<set $var to "variable">>
// Test (numbers, expressions, strings, bools, null, variables) in (commands, shortcut options, regular options, lines)
// Lines
Number: {1}
Expression: {1+1}
String: {"string"}
Bool: {true}
Variable: {$var}
// Lines with the expresion at the start (issue #243)
{$var} is great!
// Shortcut Options
-> Shortcut Number: {1}
-> Shortcut Expression: {1+1}
-> Shortcut String: {"string"}
-> Shortcut Bool: {true}
-> Shortcut Variable: {$var}
// Commands
<<number {1}>>
<<expression {1+1}>>
<<string {"string"}>>
<<bool {true}>>
<<variable {$var}>>
===
title: Destination
---
// no-op; required because the test plan will select
// an option at the end of 'Start' and they all end up here
===