Question: How to generate this function into C language?

Hi everyone, I am trying to understand how to use Maple to generate a C code. I started with the help and I read it several times but still I think I didn't get it all. The function I am working with is, with(CodeGeneration); A = proc (k) local mysum; declare = [mysum::numeric, k::integer]; for k from 1 by 1 to 10 do mysum := 1+2*k end do; end proc: C(A) But the result I am getting is [C, Fortran, IntermediateCode, Java, LanguageDefinition, Matlab, Names, Save, Translate, VisualBasic] cg0 = A; Without any generated code. So if anyone could suggest anything I will be appreciating.
Please Wait...