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