/*This console.log statement in this function never executes, since the
function returns before it is reached.*/
function pastThePointOfReturn() {
return "I'm done!";
console.log("This will not be printed");
}
console.log(pastThePointOfReturn());
//I'm done!
def print_nums(x):
for i in range(x):
print(i)
return
print_nums(10)