view test/publish/test_script_code_only.m @ 31246:43a6be589387

doc: New documentation for memoization techniques (bug #60860) vectorize.texi: New section on memoization octave.texi: List new section
author Arun Giridhar <arungiridhar@gmail.com>
date Thu, 29 Sep 2022 20:31:52 -0400
parents 273db03ab762
children
line wrap: on
line source


% Code only with a very very very very very very very very very very looong line
%
x = 5;

for i = 1:5
  x += i;  # Might be useful "perhaps"
endfor

%{
Multiline comment with keyword if "if" and 'if'
%}

if (x == 'a')
  y = sin (x);
endif

#{
Multiline comment with keyword if "if" and 'if'
#}

str = "some % string \" ' with %{";
str2 = 'another % string '' " with %{';
%