#!/bin/sh
{
    echo 'compound start'
    echo 'before continue'
continue
echo 'after continue, return value:' ${?};
    echo 'compound end'
}
