sub mySub {
    print "I am in the sub\n";
    return 123;
}

print "the returned value is " , mySub() , "\n";
