We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's no secret that every language is better with OO support. This will also be super useful when writing the runtime API.
import
private
internal
public
objectgroup
namespace MyLib { public class MyClass { private _number : int = 0 public function addToNumber(addend : int) { _number = _number + addend } public function getNumber() : int { return _number } } }
The text was updated successfully, but these errors were encountered:
Nested Functions
FilipToth
No branches or pull requests
Background and Motivation
It's no secret that every language is better with OO support. This will also be super useful when writing the runtime API.
TODO
import
statements import namespaces not filesprivate
,internal
, andpublic
accessorsobjectgroup
)Syntax
The text was updated successfully, but these errors were encountered: