view test/@Pork/Pork.m @ 11117:3cbc0d77db48 ss-3-3-53

update version info for snapshot
author John W. Eaton <jwe@octave.org>
date Tue, 19 Oct 2010 02:25:32 -0400
parents f9ab19428cd8
children
line wrap: on
line source

function [ s ] = Pork( geek, gurk )

  if (nargin==1) && isa(geek,'Pork')
    s = geek;
  else
    s.gurk = 0;
    if nargin == 0
      s0 = Spork();
    elseif nargin==1
      s0 = Spork(geek);
    else
      s0 = Spork(geek);
      s.gurk = gurk;
    end
    s = class(s,'Pork',s0);
   end 
   superiorto('Dork');

end