#!/bin/sh
echo 'before for'
for i_ in 1 2
do
    echo 'before return'
return
echo 'after return, return value:' ${?}
done
echo 'after for'
