VilaRestal
';drop database master;--
- Local time
- Today, 14:23
- Joined
- Jun 8, 2011
- Messages
- 1,046
And here it is in 'code':
Code:
Private Sub Main()
If Test1() Then
If Test2() Then
If Test3() Then SubTest4()
Else
SubTest4()
End If
End If
Do9()
End Sub
Private Sub SubTest4()
If Test4() Then
If Test5() Then SubTest6()
Else
SubTest6()
End If
End Sub
Private Sub SubTest6()
If Test6() Then
If Test7() Then SubTest6() 'recursive sub - CAREFUL!!
Else
Do8()
End If
End Sub