Largest int from concatenated ints: Difference between revisions

m
Line 704:
 
=={{header|Gambas}}==
'''[https://gambas-playground.proko.eu/ You can run this code. Copy the code, click this link, paste it in and press 'Run !']'''
<lang gambas>'Largest int from concatenated ints
 
Public Sub Form_OpenMain()
Dim iList1 As Integer[] = [1, 34, 3, 98, 9, 76, 45, 4] 'Integer list 1
Dim iList2 As Integer[] = [54, 546, 548, 60] 'Integer list 2
Line 714 ⟶ 715:
 
End
'_________________________________________________________________________________________
 
Public Sub Calc(iList As Integer[])
Anonymous user