// This script defines a function and calls it

fn bob() {
    return 3;
}

print("bob() should be 3:");

print(bob());