1997Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev]  Mud Languages -->
<!--X-From-R13: pynjerapNphc.uc.pbz -->
<!--X-Date: Wed, 13 Aug 1997 23:39:04 +0000 -->
<!--X-Message-Id: 199708132337.QAA06843#xsvr3,cup.hp.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: Pine.LNX.3.91.970806171649.7562V&#45;100000@uni&#45;corn.demon.co.uk -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev]  Mud Languages</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:clawrenc#cup,hp.com">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00524.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00526.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00415.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00414.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00525">Author</A>
&nbsp;|&nbsp;<A HREF="#00525">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00525">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev]  Mud Languages</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>Subject</em>: Re: [MUD-Dev]  Mud Languages</LI>
<LI><em>From</em>: <A HREF="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</A></LI>
<LI><em>Date</em>: Wed, 13 Aug 97 16:14:49 -0700</LI>
<LI><em>Reply-to</em>: <A HREF="mailto:claw#null,net">claw#null,net</A></LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
In &lt;<A HREF="msg00415.html">Pine.LNX.3.91.970806171649.7562V-100000#uni-corn,demon.co.uk</A>&gt;, on
08/06/97 
   at 07:57 PM, Greg Munt &lt;greg#uni-corn,demon.co.uk&gt; said:

&gt;I'm thinking that designing a language blindly would be a Bad Thing. 
&gt;Since subscribers to this list would probably have wide-reaching 
&gt;experiences in many languages, I'd be interested in, say, a list of
&gt;the  top five best and worst features of a language (features
&gt;specific to a  certain language, in addition to generic attributes).

Unfortunately a good answer to this question would require several
walls of encyclopedia sized books (you could start with the infamous
dragon book).  I'm also not that interested.

My approach steals a lot from Mike Cowlishaw's own design goals with
REXX (I think you can still find them listed on his home page): Keep
it very simple, and obvious for new non-programmer types.  This mostly
resulted in making the language typeless, having no concept of
pointers to data or pointers to methods, having a very small set of
reserved words, and trying to concentrate on doing basic common
operations easily.

I also want my language to be at least somewhat friendly to
programmers.  This leads to taking the same general view taht ColdC
does, and using something C-like.

As a result my language is almost identical to C with the following
exceptions:

  Variables may be "temporary", which means that their values will not
be preserved across method/object invocations, or "permanent" which
means that their value will be preserved.

  Variables are scoped to the block they are defined in.

  Variables may not be defined at a global (game or object) scope.

  No pointers.

  No concept of memory allocation or memory handling.

  No concept of file IO (there are minor exceptions).

  Typeless.

  Code blocking is via { and } braces.

  Code syntax is largely identical to C.

  White space insensitive.

  Semi-colons are only required between statements on the same 
 line (ie white space sensitive)

  Implicit types enclude:  
    integer (currently 32bit, soon 64bit), 
    IEEE float, 
    length limited 8bit string,
    time in seconds,
    ObjectID,
    exception ID
    
  All functions/methods have a return value.

  Explicit list support (ie any variable can be a list of values, 
  and each value in turn can be another list).

  Very simple/fast support for searching lists.

  All functions/methods return exceptions every time they return.  

  A normal return is merely an exception that doesn't require 
  a special handler (ie ERR_OKAY is not trapped, and requires no 
  handler, all other exceptions are processed as critical stack 
  unwinding exceptions.

  A function/method return consists of an exception and a 
  typeless value.

Big positive influences: C, Cool and Interlude (tho I hate Interlude's
LISP underpinnings), ksh, APL.

Big negative influences: C (good and bad), Cold/ColdC, MOO, Tiny-*,
LPC, Pike, Forth, Pascal, C++, APL (yep, both sides). ML/SML, lisp.

-- 
J C Lawrence                           Internet: claw#null,net
(Contractor)                           Internet: coder#ibm,net
---------------(*)               Internet: clawrenc#cup,hp.com
...Honorary Member Clan McFUD -- Teamer's Avenging Monolith...


</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00415" HREF="msg00415.html">Mud Languages</A></STRONG>
<UL><LI><EM>From:</EM> Greg Munt &lt;greg#uni-corn,demon.co.uk&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00524.html">Re: [MUD-Dev]  Sparse Arrays and co-ordinate based worlds</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00526.html">Re: [MUD-Dev]  Spellcaster, or Waving Hands</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00415.html">Mud Languages</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00414.html">RE: [MUD-Dev] Generalized AI last try!</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00525"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00525"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><STRONG>Re: [MUD-Dev]  Spellcaster, or Waving Hands</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00614" HREF="msg00614.html">Re: [MUD-Dev]  Spellcaster, or Waving Hands</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Fri 15 Aug 1997, 22:39 GMT
<UL>
<LI><strong><A NAME="00615" HREF="msg00615.html">Re: [MUD-Dev]  Spellcaster, or Waving Hands</A></strong>, 
Jeff Kesselman <a href="mailto:jeffk#tenetwork,com">jeffk#tenetwork,com</a>, Fri 15 Aug 1997, 23:05 GMT
</LI>
</UL>
</LI>
</ul>
</ul>
</ul>
</ul>
</ul>
</ul>
</LI>
<LI><strong><A NAME="00416" HREF="msg00416.html">Interview with Richard Bartle</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Thu 07 Aug 1997, 01:00 GMT
<LI><strong><A NAME="00415" HREF="msg00415.html">Mud Languages</A></strong>, 
Greg Munt <a href="mailto:greg#uni-corn,demon.co.uk">greg#uni-corn,demon.co.uk</a>, Thu 07 Aug 1997, 00:46 GMT
<UL>
<LI><strong><A NAME="00525" HREF="msg00525.html">Re: [MUD-Dev]  Mud Languages</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Wed 13 Aug 1997, 23:39 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00414" HREF="msg00414.html">RE: [MUD-Dev] Generalized AI last try!</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Wed 06 Aug 1997, 22:50 GMT
<LI><strong><A NAME="00413" HREF="msg00413.html">RE: [MUD-Dev] PirateMUD and CSL</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Wed 06 Aug 1997, 22:13 GMT
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00534" HREF="msg00534.html">Re: [MUD-Dev] PirateMUD and CSL</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Thu 14 Aug 1997, 00:53 GMT
<UL>
<LI><strong><A NAME="00573" HREF="msg00573.html">Re: [MUD-Dev] PirateMUD and CSL</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Thu 14 Aug 1997, 21:25 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>