Re: [MSEide-MSEgui-talk] MSElang Objects

2017-06-10 Thread Marcos Douglas B. Santos
On Sat, Jun 10, 2017 at 1:54 AM, Martin Schreiber wrote: > > I don't like "sub" much but found nothing better up to now. I think that > object methods deserve an own token "method" because of the implicit "self" > parameter. Comming from a Pascal background "procedure" implies

Re: [MSEide-MSEgui-talk] MSElang Objects

2017-06-10 Thread Edson H
OK. I will implement the same: PROCEDURE (procedures and functions) and METHOD (procedure and functions for objects). I have implemented the mode {$mode pascal} too, for Pascal compatibility. The default is {$mode PicPas}. By the way, I haven't seen the keyword ELSIF in your IF syntax.

Re: [MSEide-MSEgui-talk] MSElang Objects

2017-06-10 Thread code dz
ah , i didn't knew this -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ mseide-msegui-talk

Re: [MSEide-MSEgui-talk] MSElang Objects

2017-06-10 Thread Martin Schreiber
On Saturday 10 June 2017 14:21:45 code dz wrote: > i think (method) is good abridgement for both function & procedure . > why another keyword! > Because a method has an implicit "self" parameter which "procedure" and "function" don't have. Martin

Re: [MSEide-MSEgui-talk] MSElang Objects

2017-06-10 Thread code dz
i think (method) is good abridgement for both function & procedure . why another keyword! -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot

Re: [MSEide-MSEgui-talk] MSElang Objects

2017-06-10 Thread Martin Schreiber
On Saturday 10 June 2017 06:54:15 Martin Schreiber wrote: > " > proc test1(a: int32): flo64; > proc test2(const a: string8); > meth objty.test3(a: int32): flo64; > meth objty.test4(const a: string8); > meth ctest.test3(a: int32): flo64; > meth ctest.test4(const a: string8); > " > It has the

Re: [MSEide-MSEgui-talk] MSElang Objects

2017-06-10 Thread Martin Schreiber
On Saturday 10 June 2017 07:52:31 Edson H wrote: > I was thinking in using the two forms: > > > "proc" (short word) and "procedure" (long word). > > "meth" (short word) and "method" (long word). > > > I would like to keep the PROCEDURE, in the honor of Pascal/Modula-2. > That contradicts the