Page MenuHomeFeedback Tracker

Alternative syntax for continue and break
New, NormalPublic

Description

Please add an alternative call syntax for continue and break commands

Example:

if (cond1) continue;
if (cond2) break;

without then

Please.

Details

Severity
Feature
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
Feature Request

Event Timeline

dedmen added a subscriber: dedmen.Nov 15 2021, 7:11 PM

Not possible. SQF just doesn't work that way.

We could do
if (cond1) continueWith nil; though, but thats ugly.