fb:porticula NoPaste
Verschachtelter Prozeduraufruf
Uploader: | Sebastian |
Datum/Zeit: | 12.02.2013 01:26:36 |
SUB PrintDoppelt(x As String)
Print x & " " & x
END SUB
SUB PrintVierfach(y As String)
PrintDoppelt(y)
PrintDoppelt(y)
END SUB
PrintVierfach("Hallo")
Sleep