Path: news.cs.au.dk!news.net.uni-c.dk!howland.erols.net!math.ohio-state.edu!jussieu.fr!univ-angers.fr!univ-rennes1.fr!irisa.fr!not-for-mail From: Yoann Padioleau Newsgroups: comp.lang.beta Subject: procedure call Date: 19 Jul 1999 14:17:23 +0200 Organization: IRISA, Campus de Beaulieu, 35042 Rennes Cedex, FRANCE Lines: 53 Message-ID: NNTP-Posting-Host: hcand.irisa.fr X-Trace: news.irisa.fr 932386644 10492 131.254.50.32 (19 Jul 1999 12:17:24 GMT) X-Complaints-To: usenet@irisa.fr NNTP-Posting-Date: 19 Jul 1999 12:17:24 GMT X-Newsreader: Gnus v5.5/Emacs 20.3 Xref: news.cs.au.dk comp.lang.beta:12028 why this works : (# A: (# attribute : @ text; method : (# ... #); )# A: @obj; 1 -> obj.attribute 2 -> obj.method ???????????????????????? )# I found that parctical because it allows me to not make difference between an attribute and a method but it is not very logic. The logic one will be : (# A: @ (# attribute : @ text; method : (# ... #); )# A: @obj; 1 -> obj.attribute 2 -> obj.method )# Here i understand. -- pad