Method - xkp/Doc GitHub Wiki
Methods are well know, in xs they look like:
method Identifier '(' args ')' [:Type] { ... }
Sample:
method foo(bar)
{
alert(bar);
}
Methods are well know, in xs they look like:
method Identifier '(' args ')' [:Type] { ... }
Sample:
method foo(bar)
{
alert(bar);
}