1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
opal-examples/Blatt01/Geometry.impl
2013-10-19 01:17:37 +02:00

11 lines
127 B
Plaintext

IMPLEMENTATION Geometry
IMPORT Real COMPLETELY
DEF square == \\x. x*x
DEF cube == \\x . x*x*x
DEF rectArea == \\l,w . l*w