Say, you have the following function:
void AskBox(string text, string choices, int default_choice)
{
}
The compiler somehow lets the follow pass as 'valid' syntax:
if (AskBox('Do you like pie?'
'Yes\No'
1))
{
TextBox('You suck.');
}
else
{
TextBox('Splendid!');
}
Please really note the lack of commas. Just giving you a heads-up. And, apostrophes = quotes as always.