.jsm
source codeFile jsm_dev/example_development.jsm
:
metafun gcd( self, a, b )
{
if (a > b)
metaret self, a-b, b;
if (b > a)
metaret self, b-a, a;
return a;
}
GCD(910,1235)=
See also example_production.html and the main article.