PascalSyntax.wiki
author Wuzzy
Sat, 10 Oct 2020 16:25:03 +0200
changeset 2188 a6f98b1311f6
parent 2019 12cc62c0ae38
permissions -rw-r--r--
LuaGameplay: Max ammo crate probability is 8, not 9

#summary Hedgewars-specific Pascal syntax rules
= Hedgewars-specific Pascal syntax rules =

When programming in Pascal for Hedgewars, we have two rules which must be always obeyed. This is because of our tool [pas2CTutorial Pas2C] which doesn't fully understand Pascal yet. If these rules are broken, Pas2C will fail to operate.

== Pascal rules for `pas2c` ==

 # Never use `not` without brackets
 # Never use `in` with numerals
 # Do not use Unicode characters anywhere (even in comments)

=== Examples ===

Forbidden:

 `if a in [1, 2] then`

Allowed:

 `if a in [sprBubble, sprAmGirder] then`

Forbidden:

 `if not isExploded then`

Allowed:

 `if (not isExploded) then`

Allowed

 `if isExploded <> true then`