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,17 @@
' Gambas module file
Function greet2(name As String)
Print "how are you, "; name; "?"
End
Function bye()
Print "ok bye!"
End
Function greet(name As String)
Print "hello, "; name; "!"
greet2(name)
Print "getting ready to say bye..."
bye()
End
Public Sub Main()
greet("adit")
End