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