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