view test/compile-bench/bench-octave/cdef_method1.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 d69aecbef0c1
children
line wrap: on
line source

function cdef_method1 (n)
  obj = cdef_foo ("qwe", 123);
  for i = 1:n
    obj.method1 (2);
  end
end