MESSAGE="Hello World"
echo $MESSAGE
View CFG

echo $MESSAGE
× Unmet Precondition
╭─[:1:7]
1 │ echo $MESSAGE
· ───┬───
· ╰── Precondition EnvVarSet("MESSAGE") could not be met
╰────
foo=hello
foo_var=foo
unset foo_var
echo $foo
View CFG

foo=hello
foo_var=foo
unset $foo_var
echo $foo
× Unmet Precondition
╭─[:6:7]
5 │
6 │ echo $foo
· ─┬─
· ╰── Precondition EnvVarSet("foo") could not be met
╰────
touch foo
rm foo
View CFG

touch foo
rm foo bar
× Unmet Precondition
╭─[:3:8]
2 │
3 │ rm foo bar
· ─┬─
· ╰── Precondition FileExists("bar") could not be met
╰────
touch file.txt
if ping -c 1 google.com; then
cat file.txt
fi
rm file.txt
View CFG

touch file.txt
if ping -c 1 google.com; then
rm file.txt
fi
cat file.txt
× Potentially Unmet Precondition
╭─[:7:5]
6 │
7 │ cat file.txt
· ────┬───
· ╰── FileExists("file.txt") not satisfied due to: Some("rm file.txt")
╰────