diff options
Diffstat (limited to 'tests/examplefiles/matlab_sample')
-rw-r--r-- | tests/examplefiles/matlab_sample | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/examplefiles/matlab_sample b/tests/examplefiles/matlab_sample index 1834050c..4f61afe8 100644 --- a/tests/examplefiles/matlab_sample +++ b/tests/examplefiles/matlab_sample @@ -13,7 +13,8 @@ end a = rand(30); b = rand(30); -c = a .* b ./ a \ (b .* a + b - a); +c = a .* b ./ a \ ... comment at end of line and continuation + (b .* a + b - a); c = a' * b'; % note: these ticks are for transpose, not quotes. @@ -24,4 +25,6 @@ disp('a comment symbol, %, in a string'); function y=myfunc(x) y = exp(x); - + {% +a block comment + %} |