Files
harbour-core/harbour/tests/altd.prg
Antonio Linares 6e7a03d96b $id fix
2002-06-02 09:56:29 +00:00

18 lines
263 B
Plaintext

//
// $Id$
//
// Testing AltD()
// Notice you have to compile it using /b
function Main()
AltD( 1 ) // Enables the debugger. Press F5 to go
Alert( "debugger enabled" )
AltD() // Invokes the debugger
Alert( "debugger invoked" )
return nil