1. Updated EPP
-------Phoenix-Boundary-07081998-
Content-type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: Quoted-printable
I've updated EPP to list functions and procedures. Tree.ex now displays all
functions and procedures and where they are defined. You can get epp at
http://members.tripod.com/~JJProg/epp.html
Jeffrey Fielding
JJProg at cyberbury.net
http://members.tripod.com/~JJProg/
-------Phoenix-Boundary-07081998---
2. Updated EPP
-------Phoenix-Boundary-07081998-
Content-type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: Quoted-printable
I have again updated EPP. Now it can parse function, procedure, and type
arguments. You can get it at http://members.tripod.com/~JJProg/epp.html
Jeffrey Fielding
JJProg at cyberbury.net
http://members.tripod.com/~JJProg/
-------Phoenix-Boundary-07081998---
3. Re: Updated EPP
On Sun, 15 Nov 1998, Jeffrey Fielding wrote:
> I have again updated EPP. Now it can parse function, procedure, and type
> arguments. You can get it at http://members.tripod.com/~JJProg/epp.html
>
> Jeffrey Fielding
> JJProg at cyberbury.net
> http://members.tripod.com/~JJProg/
>
Have you thought of adding a feature to extend operations?
So you can add things like %.
-Humberto Yeverino Jr.
"I kick ass for the Lord."
-Dead Alive (1992)
***********************************************************
Home Page:
http://www.engr.csufresno.edu/~humberto/Home.html
Ti Page:
http://www.engr.csufresno.edu/~humberto/tex.html
z80 Source Page:
http://www.engr.csufresno.edu/~humberto/z80source.html
Official Tyrant Home Page:
http://www.engr.csufresno.edu/~humberto/tyrant.html
E-mail:
humberto at engr.csufresno.edu
***********************************************************
4. Re: Updated EPP
-------Phoenix-Boundary-07081998-
Content-type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: Quoted-printable
You wrote on 11/16/98 2:37:00 AM:
>On Sun, 15 Nov 1998, Jeffrey Fielding wrote:
>> I have again updated EPP. Now it can parse function, procedure, and type
>> arguments. You can get it at http://members.tripod.com/~JJProg/epp.html
>>
>> Jeffrey Fielding
>> JJProg at cyberbury.net
>> http://members.tripod.com/~JJProg/
>>
>Have you thought of adding a feature to extend operations=3F
>So you can add things like %.
>
>-Humberto Yeverino Jr.
>
>"I kick ass for the Lord."
>-Dead Alive (1992)
>
>***********************************************************
>Home Page:
> http://www.engr.csufresno.edu/~humberto/Home.html
>
>Ti Page:
> http://www.engr.csufresno.edu/~humberto/tex.html
>
>z80 Source Page:
> http://www.engr.csufresno.edu/~humberto/z80source.html
>
>Official Tyrant Home Page:
> http://www.engr.csufresno.edu/~humberto/tyrant.html
>
>E-mail:
> humberto at engr.csufresno.edu
>***********************************************************
>
Jeffrey Fielding
JJProg at cyberbury.net
http://members.tripod.com/~JJProg/
-------Phoenix-Boundary-07081998---
5. Re: Updated EPP
-------Phoenix-Boundary-07081998-
Content-type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: Quoted-printable
OOPS - for some reason, the last message I sent didn't say anything.
Anyway, yes, I am eventually going to add support for neat operators like %.
Jeffrey Fielding
JJProg at cyberbury.net
http://members.tripod.com/~JJProg/
-------Phoenix-Boundary-07081998---
6. Re: Updated EPP
On Mon, 16 Nov 1998, Jeffrey Fielding wrote:
> OOPS - for some reason, the last message I sent didn't say anything.
>
> Anyway, yes, I am eventually going to add support for neat operators like %.
>
> Jeffrey Fielding
> JJProg at cyberbury.net
> http://members.tripod.com/~JJProg/
>
I meant in general so you could define an infix operator for any function.
You'd also need something to define its precedence.
Postfix stuff would be cool also, then you could do stuff like:
if x is_prime then
instead of:
if is_prime(x) then
later,
-Humberto Yeverino Jr.
"I kick ass for the Lord."
-Dead Alive (1992)
7. Re: Updated EPP
- Posted by JJProg at CYBERBURY.NET
Nov 16, 1998
-
Last edited Nov 17, 1998
EU>I meant in general so you could define an infix operator for any function.
EU>You'd also need something to define its precedence.
EU>Postfix stuff would be cool also, then you could do stuff like:
EU>if x is_prime then
EU>instead of:
EU>if is_prime(x) then
Great idea. I'll also allow programs to define custom operators so you
could have:
function mod(object a, object b)
return remainder(a,b)
end function
setOperator("%",routine_id("mod"))
if 5 % 2 then
...
Jeffrey Fielding
JJProg at cyberbury.net