sadly, exit with () does not compile

This commit is contained in:
Stefan Maroń 2021-12-15 07:56:09 +01:00 committed by GitHub
parent ff48e1a941
commit 8bbfe01ede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ A line of code should not have more than one statement.
## Bad code
```al
if OppEntry.Find('-') then exit();
if OppEntry.Find('-') then exit;
```