Examples in Gambas (#5) by @vdelacruzjardon

This commit is contained in:
vdelacruzjardon
2016-09-16 13:41:52 -05:00
committed by Aditya Bhargava
parent e2a4153e80
commit 0aec97dbf2
41 changed files with 355 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
' 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