view test/bug-58593/myclass1.m @ 31170:06c76eca5f95 default tip @

maint: merge stable to default
author John W. Eaton <jwe@octave.org>
date Fri, 29 Jul 2022 12:02:42 -0400
parents 3719f5d452d4
children
line wrap: on
line source

classdef myclass1 < handle
  properties
    data
  end
  methods
    function obj = myclass1 ()
      obj.data = 1001:1005;
    end
  end
end