atesh
Freshman
Is there a way to make an array of functions? Essentially:
Visual Basic:
Private Sub GamePlay()
Call Question(x)()
End Sub
Private Sub Question1()
....
End Sub
Private Sub Question2()
....
End Sub
etc.