view test/publish/test_script_code_only.m @ 28116:273db03ab762 stable

maint: Add missing newline character at end of file for UNIX compliance. * README, go-home.svg, icons_license, base_1.m, test_script_code_only.m, test_script_head_only.m: Add missing newline character at end of file for UNIX compliance.
author Rik <rik@octave.org>
date Wed, 19 Feb 2020 20:38:39 -0800
parents b6f482e29afd
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 %{';
%