In VBA, you can do something like
sFunctionName = "MyFunction"
sParameter1 = "MyValue"
If Len(Trim(sFunctionName)) > 0 Then
If Len(sParameter1) = 0 Then
Application.Run sFunctionName
Else
Application.Run sFunctionName, sParameter1
End If
End If
Is there any way to do this kind of thing in QB64?
I know that using eval and running code from data isn't the most "secure" practice, and for anything public-facing I would avoid it,
but it can come in handy for testing a large number of functions or quickly (re)defining a menu in data when prototyping a design, etc.