|
|
Re: Wouldn't it be nice if Matlab supported C-style comments?
Posted:
Mar 10, 2013 4:38 PM
|
|
You might be interested in multi-line statement comments
>> a=1 ... +2 ... % comment here ... +3 ... ... comment again ... +4
a =
10
% (a = 1 + 2 + 3 + 4) % Bruno
|
|