$foo = "foo"$bar = "bar"case $foo { "foo": { notice "inside first case -- before nested" case $bar { 'bar': { notice "inside smalled case" } } notice "inside first case -- after nested" }}