view test/bug-52851/script4.m @ 31217:1469658f769b

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 30 Aug 2022 18:27:00 +0200
parents d45d1b4bb919
children
line wrap: on
line source

1; %script identifier

function r = computation ()
  r = 1;
endfunction

r1 = computation ();

function r = computation ()
  r = 2;
endfunction

r2 = computation ();