view test/private-functions/fcn.m @ 31144:22305b923761

doc: which Python executable and how to change it (bug #62733) * python.m: Document difference between Unix and Windows. Fix whitespace.
author Colin Macdonald <cbm@m.fsf.org>
date Sat, 09 Jul 2022 22:05:40 -0700
parents 7a45100a40c4
children
line wrap: on
line source

function retval = fcn ()
  ## Call private function.
  assert (pfcn1 (), "pfcn1");
  ## Execute private script.
  a = "";
  ascript;
  assert (a, "ascript");
  retval = true;
endfunction