Design
dylan.asc
Associated article: A Taste of Dylan
Tags: Design
_A TASTE OF DYLAN_ by David Betz Example 1: A Dylan class definition (define-class <point> (<object>) (x required-init-keyword: x:) (y required-init-keyword: y:)) Example 2: (a) using setter functions to change the value of a slot; (b) calling the ...


