You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can currently specify the default option when you access it:
Dim name As String = options.StringValue("name", "World")
But if you access it multiple times, you have to specify the default value multiple times. The idea here is to specify it at the time the option is created:
Dim o As New Option("n", "name", "Name of person to say hello to")
o.DefaultValue = "World"
.. later ..
Print "Hello, " + options.StringValue("name")
The text was updated successfully, but these errors were encountered:
You can currently specify the default option when you access it:
But if you access it multiple times, you have to specify the default value multiple times. The idea here is to specify it at the time the option is created:
The text was updated successfully, but these errors were encountered: