Compound data type: Difference between revisions

add E example
No edit summary
(add E example)
Line 101:
}
}
 
==[[E]]==
[[Category:E]]
 
def makePoint(x, y) {
def point {
to getX() { return x }
to getY() { return y }
}
return point
}
 
==[[IDL]]==