summaryrefslogtreecommitdiffstats
path: root/test/cbot/scenarios/mw.txt
blob: c23767079d4bc9a7a5d14de0492331901fb12714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern public void main()
{
//	goto( 3, 4 );

	while( true )
	{
		try { goto (12) ; }
		catch( FF( ) )
		{ show( "ko"); }
	}
}

boolean FF()
{
	return false;
}