view test/bug-52851/script4.m @ 31185:a1145ac2ce9b

Tiff: populated TagID from the C++ map to avoid having two copies * __tiff__.cc (F__tiff_make_tagid__): implemented internal function as initializer for TagID. * Tiff.m: changed the initialization for TagID to use the internal function.
author magedrifaat <magedrifaat@gmail.com>
date Thu, 18 Aug 2022 17:23:43 +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 ();