compiler now on par with where it was in the v1 version

This commit is contained in:
2025-11-24 23:55:33 -07:00
parent 37d5643615
commit 30b67fec54

View File

@@ -1,7 +1,7 @@
fn addTemperatures(temp1, temp2) {
let toReturn = temp1 + temp2;
return temp1 + temp2;
};
addTemperatures(15c, 120c);
addTemperatures(1500f, 20c);
let newTemp1 = addTemperatures(15c, 120c);
let newTemp2 = addTemperatures(50c, 20c);