view test/compile/script3.m @ 32426:8e4f14837db2

maint: ensure that source files end with a single newline character
author John W. Eaton <jwe@octave.org>
date Sat, 21 Oct 2023 20:51:54 -0400
parents 56acd8f390f8
children
line wrap: on
line source

% Check that variables from script one are accessable
% and have the correct value.
assert (a1 == 1);
assert (b1 == 3);
assert (c1 == 4);
eval ("assert (d1 == 5)");
assert (a2 == 3);