* Makefile
* config/*
* contrib/*
* doc/*
* extras/*
* include/*
* lib/*
* package/*
* src/*
* tests/*
* utils/*
* removed empty lines left after removed '$' + 'Id' + '$' identifiers
14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
PROCEDURE Main()
|
|
|
|
LOCAL start := Seconds(), stop
|
|
|
|
? "start ", start
|
|
Tone( 440, 9.1 )
|
|
Tone( 880, 9.1 )
|
|
Tone( 440, 9.1 )
|
|
stop := Seconds()
|
|
? "stop ", stop
|
|
? "duration", ( stop - start ), "(should be close to 1.5)"
|
|
|
|
RETURN
|