blob: 8fcd3c92723b905f13a507b357fcfe38135ee75a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ????-2008 - INRIA
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
old = beep();
if beep('on') <> 'on' then pause,end;
if beep('off') <> 'off' then pause,end;
if beep() <> 'off' then pause,end;
beep(old);
|