view test/ctor-vs-method/@other/other.m @ 15564:b66be1cb12ca default tip

Merge proper file rename
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Thu, 25 Oct 2012 16:48:35 -0400
parents 6c952376482d
children
line wrap: on
line source

function r = other (varargin)
  __trace__ ('begin other/other');
  r = class (struct (), 'other');
  __trace__ ('end other/other');
end