view test/@Pork/gurk.m @ 11527:a10544c699f2

Remove texas_lotto from Automake build system.
author Rik <octave@nomad.inbox5.com>
date Fri, 14 Jan 2011 11:54:39 -0800
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = gurk( in, val )

  if (nargin==1) 
    out = in.gurk;
  else
    in.gurk = val;
    out = in;
  end
        
end