Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion comparing-haxe-and-actionscript/deep-dive/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ The Haxe programming language is designed to limit the number of keywords, so th

* `const`

Actionscript uses the `const` keyword to define a constant value. Because Haxe supports inlining, a `const` keyword is not necessary.
Actionscript uses the `const` keyword to define a constant value. Because Haxe supports inlining, a `const` keyword is not necessary. Haxe does not support instance constants, but you may make a read only property with the keyword `never`. Haxe does not support local constants.

```haxe
public static inline var gravity = 9.8;
Expand Down