#include<iostream>
inline float cube(const float s) {return s*s*s;}
int main() {

float side;
cin >> side;
cout << "Volume of cube with side" << side<< "is "
<< cube(side) << endl;

return 0;
}

Shouldn't that compile? I can't compile anything!! I just downloaded the new version today and it does the same thing as the old. I can't compile. Am I missing something?