ex-return-empty.ox (246B)
void returnnothing() {
print("I will return nothing");
return;
}
void main() {
print("calling return nothing:");
returnnothing();
return;
return;
return;
return;
return;
return;
return;
return;
}