Test for AltD() behavior

This commit is contained in:
Antonio Linares
2002-06-02 09:51:39 +00:00
parent a5962dd566
commit 2a7cbbce05

18
harbour/tests/altd.prg Normal file
View File

@@ -0,0 +1,18 @@
//
// $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