view test/@Blork/bleek.m @ 12993:dfab2a8ca545 stable

doc: update sscanf doc string to match current behavior * file-io.cc (Fsscanf): Document POS output.
author John W. Eaton <jwe@octave.org>
date Wed, 24 Aug 2011 11:20:26 -0400
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = bleek( in, val )

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