xxxxxxxxxx
function setup() {
var yourWeight = 132;
var marsWeight = calculateMars(yourWeight);
var marsWeightString = calculateMars("My Weight is 132");
print(marsWeight);
print(marsWeightString);
}
function calculateMars(w) {
print("The type of the variable w is: " + typeof(w));
var newWeight = w * 0.38;
return newWeight;
}