code.cpp 254 B

123456789
  1. /* Fix the code in code tab to pass this challenge (only syntax errors).
  2. * Look at the examples below to get an idea of
  3. * what the function should do.
  4. */
  5. // SQUAED spelling mistake is not a syntax error~! N008
  6. int squared(int a) {
  7. return a*a;
  8. }