echo "Before if"

if test "foo" = $foo
    if test "2" = $foo
        echo "Found 2"
    end
    echo "in between"
    if test "3" = $foo
        echo "Found 3"
    end
end

echo "After if"
