Talk About Network



Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Forth > Re: The Promise...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 58 of 495 Topic 3957 of 4053
Post > Topic >>

Re: The Promise of Forth

by Bruce McFarling <agila61@[EMAIL PROTECTED] > Apr 6, 2008 at 08:16 AM

On Apr 6, 10:18 am, Aleksej Saushev <a...@[EMAIL PROTECTED]
> wrote:
> In every applicable sense, dynamic, static, or weak, there's no
> character type in Forth.

Why did you leave out strong? Normally "weakly typed" means "not
strongly typed", so once we've established, as we have, that CHAR is
an abstract data type, saying its "not weakly typed" is identical to
saying "it is strongly typed". And I would argue ... indeed, will
argue, below ... that Forth-94 abstract data types are NOT strongly
typed in ANY sense of the word.

The character type in Forth-94 is weakly typed, as weakly typed is
commonly defined in Computer Science. However, I understand that in
order to "win" the argument, you seem to be prepared to redefine each
and every term used, I have to take into account that since weak
typing is the opposite of strong typing, and since strong typing has a
wide variety of definitions, weak typing has an equally wide variety
of definitions.

From Wikipedia, which is an excellent source for this kind of
question, because furious arguments over the meanings of terms are,
first, won or lost in terms of references to sources, rather than "gut
feelings", and when there are conflicting sources are usually resolved
by listing both meanings and noting that there are different sense
used in different contexts.

However, the straightforward point to bear in mind is that since CHAR
is an abstract data type, under the commonly accepted definition, that
means that if it does not qualify as strongly typed, in any of the
follow senses, that makes it weakly typed in that sense.

http://en.wikipedia.org/wiki/Strong_typing#Meanings_in_computer_literature

QUOTE
Some of the factors which writers have qualified as "strong typing"
include:
    * Static typing as opposed to dynamic typing. In a static type
system, types are associated with variable names (usually when they
are declared) rather than values (usually when they are created). The
types may be inferred by the compiler and/or provided as annotations.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * The mandatory requirement, by a language definition, of compile-
time checks for type constraint violations. That is, the compiler
ensures that operations only occur on operand types that are valid for
the operation.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * Type safety; that is, at compile or run time, the rejection of
operations or function calls which attempt to disregard data types. In
a more rigorous setting, type safety is proved about a formal language
by proving progress and preservation.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * Disallowing type conversion. Values of one type cannot be
converted to another type, explicitly or implicitly.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * Some authors reserve the phrase "strongly-typed language" for
languages that omit implicit type conversion, that is, conversions
that are inserted by the compiler on the programmer's behalf. For
these authors, a programming language is strongly typed if types must
be converted by an explicit notation, often called a cast.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * The absence of ways to evade the type system. Such evasions are
possible in languages that allow programmer access to the underlying
representation of values, i.e., their bit-pattern.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * A complex, fine-grained type system with compound types.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * Fixed and invariable typing of data objects. The type of a given
data object does not vary over that object's lifetime. For example,
class instances may not have their class altered.
UNQUOTE

Clearly the CHAR is not strongly typed in this sense, so using
strongly typed in the sense, it is weakly typed.

QUOTE
    * Strong guarantees about the run-time behavior of a program
before program execution, whether provided by static analysis or
another mechanism.
UNQUOTE

This is the only one where there might be some dispute, however the
critical point is that if there are strong guarantees about the run-
time behavior of a program, it is provided by testing of the behavior
of each word in the system, including regression testing after
modifications, and not by the type system. So, in the sense meant by
the above, clearly the CHAR is not strongly typed in this sense, so
using strongly typed in the sense, it is weakly typed.

So CHAR is weakly typed in *every sense of the use of the term* in the
literature that respects the most common definition of an abstract
data type. If a discussion in the literature defines both strongly
typed and weakly typed explicitly and with a definition that excludes
some abstract data types, it is normally in the context of the range
of possibilities in a particular programming language or family of
languages ... and so it would not be surprising if you took those
definitions out of their intended context and dropped them into a
different context and the definitions did not turn out to be
exhaustive.




 495 Posts in Topic:
The Promise of Forth
Jonah Thomas <jethomas  2008-03-22 21:56:18 
Re: The Promise of Forth
Axel Harvey <xlrv@[EMA  2008-03-22 21:57:00 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-23 06:09:42 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-23 12:50:04 
Re: The Promise of Forth
Albert van der Horst <  2008-03-24 02:02:31 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-03-31 22:17:42 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-01 10:32:12 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-01 12:45:29 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-02 11:10:23 
Re: The Promise of Forth
Albert van der Horst <  2008-04-01 09:05:40 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-01 12:59:36 
Re: The Promise of Forth
Guy Macon <http://www.  2008-03-23 22:46:35 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-03-31 22:29:25 
Re: The Promise of Forth
Albert van der Horst <  2008-04-01 09:10:55 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 18:05:14 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-24 02:36:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 19:39:13 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-03-27 12:07:48 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 09:50:51 
Re: The Promise of Forth
"Paul E. Bennett&quo  2008-03-23 11:20:00 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-25 14:11:45 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-25 18:54:11 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 14:53:25 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-27 09:11:30 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 09:53:56 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 08:23:22 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-23 12:58:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 12:58:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 14:16:35 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 00:17:17 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-24 22:28:53 
Re: The Promise of Forth
"Jenny Brien" &  2008-03-25 20:19:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 14:28:01 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 15:41:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 16:32:27 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 17:40:46 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 11:23:46 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 11:04:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 20:40:22 
Re: The Promise of Forth
stephen@[EMAIL PROTECTED]  2008-03-25 04:44:48 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-25 17:12:48 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-26 06:13:36 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-26 07:00:14 
Re: The Promise of Forth
astrobe <fdubois76@[EM  2008-03-27 05:32:10 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-27 15:35:21 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 15:41:20 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-28 17:41:22 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 17:36:37 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-03-28 16:40:35 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-27 11:14:40 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-03-27 12:12:34 
Re: The Promise of Forth
astrobe <fdubois76@[EM  2008-03-28 05:28:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 11:30:35 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:07:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 15:15:23 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:05:20 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:10:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 08:16:09 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 10:11:02 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 12:16:54 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-23 16:45:15 
Re: The Promise of Forth
kenney@[EMAIL PROTECTED]   2008-03-24 08:32:26 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-24 17:22:51 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-23 12:09:11 
Re: The Promise of Forth
"Robert Miller"  2008-03-23 21:31:37 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-24 17:49:46 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 02:41:12 
Re: The Promise of Forth
Frank Buss <fb@[EMAIL   2008-03-25 05:00:58 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 20:09:00 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 04:03:15 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-25 06:49:08 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 22:44:53 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 11:37:14 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 22:51:42 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-25 10:51:49 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-25 10:55:38 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-03-25 19:39:22 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 23:06:26 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-03-27 18:36:53 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 20:54:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 08:57:48 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 09:32:08 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 17:43:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-23 16:35:44 
Re: The Promise of Forth
John Passaniti <put-my  2008-03-23 18:37:55 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 23:18:44 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-23 23:50:24 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 08:06:31 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 08:24:37 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 10:38:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 08:52:04 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 09:32:58 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 11:24:39 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 14:55:12 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-25 02:34:19 
Re: The Promise of Forth
Alex McDonald <blog@[E  2008-03-25 07:20:19 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 09:20:17 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 16:08:24 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 17:34:51 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 19:55:56 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 20:00:19 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:29:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 10:35:29 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:16:23 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:25:31 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 16:48:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 01:08:15 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 10:39:14 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:50:08 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 07:54:47 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 23:41:57 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 23:47:56 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 08:25:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-07 09:45:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-07 09:59:41 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-07 21:18:56 
Re: The Promise of Forth
kenney@[EMAIL PROTECTED]   2008-04-08 04:52:36 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-08 18:59:06 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-09 11:18:52 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-09 17:45:09 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-12 21:15:16 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-08 07:03:01 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-09 08:57:51 
Re: The Promise of Forth
Tarkin <Tarkin000@[EMA  2008-04-09 22:38:00 
Re: The Promise of Forth
Brad Eckert <nospaambr  2008-03-25 20:30:02 
Re: The Promise of Forth (Doty)
William James <w_a_x_m  2008-03-26 03:25:01 
Re: The Promise of Forth (Doty)
William James <w_a_x_m  2008-03-26 03:34:41 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 06:40:48 
Re: The Promise of Forth (doty)
Bruce McFarling <agila  2008-03-26 07:06:33 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 11:46:10 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 14:00:53 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:20:32 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 15:41:32 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-05 23:40:17 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 19:09:35 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 15:21:25 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-04-04 04:06:12 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-04 08:55:34 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 10:10:29 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 18:39:26 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 18:56:02 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-27 10:28:45 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-28 09:57:12 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 17:40:51 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-30 01:54:05 
Re: The Promise of Forth
John Passaniti <nntp@[  2008-03-30 06:20:08 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-30 09:58:40 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 20:05:36 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 22:39:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-23 22:07:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 18:38:03 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 22:37:03 
Re: The Promise of Forth
John Passaniti <put-my  2008-03-24 01:00:11 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 10:46:31 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 18:02:13 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 20:50:19 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 21:25:29 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 23:10:02 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 11:56:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 10:24:48 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 11:44:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 12:44:24 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 14:37:25 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 14:12:06 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 17:34:10 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 01:53:13 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-25 00:02:28 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 11:50:15 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 17:33:45 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 19:42:54 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-25 12:16:55 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 15:17:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 09:48:37 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-25 10:02:13 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 14:29:41 
Re: The Promise of Forth
m-coughlin <m-coughlin  2008-03-25 23:32:55 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-25 05:46:58 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-27 05:32:15 
Re: The Promise of Forth
Albert van der Horst <  2008-03-28 09:07:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-28 08:12:44 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-28 10:00:40 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 17:31:47 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-30 00:10:43 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 21:46:01 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 07:53:42 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 09:03:40 
Re: The Promise of Forth
"Robert Miller"  2008-03-24 11:40:00 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:19:30 
Re: The Promise of Forth
"Robert Miller"  2008-03-24 22:08:54 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 21:24:16 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 19:47:41 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:42:12 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:28:46 
Re: The Promise of Forth
"Mark W. Humphries&q  2008-04-04 09:51:51 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:05:49 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:12:15 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 20:07:19 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 04:14:38 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 04:40:16 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 14:10:31 
Re: The Promise of Forth
stephen@[EMAIL PROTECTED]  2008-04-05 14:50:53 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 07:56:43 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 08:01:51 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-04-05 10:16:34 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 10:42:39 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 10:51:57 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-13 19:42:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-14 11:13:45 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-01 16:42:58 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-02 09:15:10 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 07:13:40 
Re: The Promise of Forth
Albert van der Horst <  2008-05-02 16:11:20 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 10:55:22 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-02 21:39:17 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 16:14:01 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 16:34:35 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 02:07:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 21:03:33 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 09:03:49 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-07 15:27:31 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 02:04:24 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 21:11:32 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 09:49:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 08:32:32 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-05-03 09:01:34 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 11:06:21 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-05-03 17:10:06 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:23:14 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 09:49:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:25:24 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 12:48:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 21:49:17 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 12:01:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:57:53 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 13:51:22 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 21:56:47 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 17:26:20 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-05 10:25:55 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-05 17:45:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 11:08:48 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 14:10:10 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 14:59:23 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:26:05 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 06:26:07 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:45:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:58:04 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 11:19:27 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:37:37 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 23:08:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 19:57:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 21:18:46 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 09:15:24 
Re: The Promise of Forth
Doug Hoffman <no.spam&  2008-03-24 10:53:38 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 09:57:45 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 09:39:24 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 14:38:07 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 11:16:10 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 13:08:44 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:47:02 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 12:54:32 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-24 19:56:20 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 13:04:18 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:51:21 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:05:04 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:58:24 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 15:46:16 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:54:02 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 18:19:57 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 00:43:34 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 20:27:40 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 07:30:17 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 18:28:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 20:40:53 
Re: The Promise of Forth
"Robert Miller"  2008-03-25 23:20:11 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 06:56:49 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 10:44:41 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 20:18:16 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 20:52:17 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-03-26 15:01:03 
Re: The Promise of Forth
John Passaniti <nntp@[  2008-03-26 16:32:07 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-04-01 18:59:28 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-26 16:28:41 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-04-01 19:24:17 
Re: The Promise of Forth
"Mark W. Humphries&q  2008-03-26 20:31:53 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:59:25 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-01 15:37:48 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:29:24 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-26 21:30:32 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-26 21:42:29 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-27 13:36:42 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 23:08:05 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-02 21:50:17 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:42:28 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-06 21:58:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 12:19:28 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:24:03 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 19:53:18 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 20:26:22 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-26 23:22:59 
Re: The Promise of Forth (Doty)
John Doty <jpd@[EMAIL   2008-03-27 16:55:46 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-27 02:51:50 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:23:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:14:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:26:43 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:23:15 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 21:35:47 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-25 23:26:05 
Re: The Promise of Forth (doty)
Jonah Thomas <jethomas  2008-03-25 23:30:28 
Re: The Promise of Forth (doty)
"Rod Pemberton"  2008-03-27 05:50:34 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-26 08:57:09 
Re: The Promise of Forth (Doty)
mhx@[EMAIL PROTECTED] (M  2008-03-26 19:16:10 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 14:07:58 
Re: The Promise of Forth (Doty)
mhx@[EMAIL PROTECTED] (M  2008-03-26 22:33:00 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 14:48:23 
Re: The Promise of Forth (doty)
Jonah Thomas <jethomas  2008-03-27 20:40:56 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-27 21:10:39 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:22:53 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-01 14:37:57 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:01:14 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-02 02:54:39 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 16:20:49 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-03 00:40:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 16:39:19 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 23:00:00 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-02 17:13:44 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:18:03 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 20:03:58 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 19:58:34 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-02 22:15:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 17:53:48 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-03 19:45:21 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 17:33:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 00:19:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 21:00:25 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-04 11:30:17 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 00:01:05 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-06 13:26:40 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-07 21:14:47 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-08 10:20:03 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-04 19:01:03 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-03 16:36:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 21:43:44 
[Doty] Re: The Promise of Forth
Andrew Haley <andrew29  2008-04-04 04:25:52 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-04-04 13:30:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 10:00:37 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-04-04 12:33:50 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-04 08:37:58 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-05 21:51:10 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-02 22:45:20 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 17:12:47 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-03 22:02:36 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 17:05:38 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 00:17:35 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 18:46:00 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 16:02:45 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 10:40:20 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:14:28 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 16:24:05 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 00:57:17 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-02 04:44:30 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 10:05:50 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 09:20:12 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 13:29:06 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 15:26:26 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 17:43:46 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 16:48:13 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 19:09:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 13:51:32 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:34:29 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:40:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 17:05:49 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 14:53:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:58:08 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 15:33:35 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 13:40:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 23:24:16 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 18:52:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 17:30:43 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 21:38:23