williambyrne

18 Reputation

4 Badges

19 years, 111 days

MaplePrimes Activity


These are questions asked by williambyrne

Is is possible to add comments in Maple code without gyrating through the LanguageDefinition? Below is a sample that shows an embedded comment - it would be nice if this were possible.
fn := proc(n)
  local x;
  
  # here's my math
  x := n + n;

end proc;

C(fn);

int fn(int n)
{

 // here's my math
 x = n + n;

 return x;
}
Page 1 of 1