16 lines
196 B
Plaintext
16 lines
196 B
Plaintext
' Gambas module file
|
|
|
|
Function countdown(i As Integer) As Integer
|
|
Print i
|
|
If i <= 0 Then
|
|
Return
|
|
Else
|
|
countdown(i - 1)
|
|
Endif
|
|
|
|
End
|
|
|
|
Public Sub Main()
|
|
countdown(5)
|
|
End
|