Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
C# is not Dylan (was: Re: C# : The new language from M$)
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 158 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Rob Myers  
View profile  
 More options Jun 29 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Rob Myers <r...@h2g2.com>
Date: 2000/06/29
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
The syntax looks alien relative to  curly-bracket languages, but the
semantics are pretty similar. I find that as long as you admit that it
looks different, then explain how it's similar, you can get people to map
their C syntax to Dylan syntax pretty easily.

I got used to Dylan's syntax from a C background, I still haven't got used
to Lisp's.

int CPlusPlus()
{
    return 1;

}

(defun lisp (x)
    1
)

define method dylan() => ( result )
    1;
end method dylan;

- Rob.

Bruce Hoult wrote:
> In article <kpamlscdjl89ihfhsdk3d4rinoa1hji...@4ax.com>, Jason Trenouth
> <ja...@harlequin.com> wrote:

> >Unfortunately,
> > from the point of view of promulgating the language, Dylan's syntax
> > looks very alien to many C programmers.

--
Rob Myers  -  r...@h2g2.com         H2G2  -  http://www.h2g2.com/
"Don't talk to sociologists. Social practice has no sociological
content."A&L
http://www.robmyers.org/                  http://www.gwydiondylan.org/

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lyman Taylor  
View profile  
 More options Jun 29 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Lyman Taylor <lyman.tay...@mindspring.com>
Date: 2000/06/29
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
Bruce Hoult wrote:

...

> This was, of course, in the days before Java, Perl, and C#.

  Err... C# certainly. :-)
  Work on Dylan probably predates Java (the language formerly know as Oak)    
    only by short amount of time, if at all. I seem to recall hearing about
    Oak and Dylan around the same time. However, the current infix
    syntax does not. (Dylan had  Lisp/Scheme like syntax at first).
  Perl (1987)... I don't think so.  At least "Perl" the replacement for "awk".
    (as opposed to Perl that caught the internet wave).

  I think it would more accurate that the Dylan syntax was likely more a
  direct "anti" reaction to the baroque language C++.  That language was
  in the "cures all ills" phase that Java is in now about that time. I
  don't think the designers wanted to take the herculean leap from
  "scheme like" to "c++ like".  Languages like Ada and Modula-3 had
  more compatible syntatical goals than C/C++.

  The commonality that C/Dylan share is along the respective
  Algol ancestory lines. Which for both is kind of far back. ;-)
  However, it is enough, with modest effort, for folks predisposed
  to C syntax to latch onto.

Lyman


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lyman Taylor  
View profile  
 More options Jun 29 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Lyman Taylor <lyman.tay...@mindspring.com>
Date: 2000/06/29
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
Rob Myers wrote:

...

> .... but the
> semantics are pretty similar.

 Huh???

       Dylan                                      C
   reference based semantics            value based semantics
   (never make a copy unless            ( always make copies)
     explicity asked for)

   operators are function calls         operators tend to map to opocodes

   most "statements" are expressions    statements don't return values.
   (e.g.
      1 ==  if test then a else b end; )

There are not totally unsimilar, but there are some definately some stuff
that can throw a C programmer into confusion.

The presented code fragments were almost entirely "syntax", IMHO.
The "last expression, function's value" sematics are matched in
dylan and lisp whereas the C requires explicit control change.

I will grant that people present their most negative visceral  reactions
to "alien" syntax. Second only to "alien" editors. :-)  They seem to
much more forgiving of difference as long as it malleable enough to
tweaked to what they want. (if necessary, a big enough hammer to
fit round peg into square hole.
         if test then temp := a else temp := b end;
         1 == temp;
Or the classic "FORTRAN written in C". )

Lyman


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Myers  
View profile  
 More options Jun 29 2000, 3:00 am
Newsgroups: comp.lang.dylan
From: Rob Myers <robmy...@cwcom.net>
Date: 2000/06/29
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
Argh. Syntax semantics? Is that a valid phrase?

I meant that within the language syntax you have markers for beginning and
ending blocks, blocks are scopes, and lines generally end with an end of
line marker. I know this sounds trivial, but the fuss people make over
syntax tends to obscure this.

So, despite having each others' programmers reaching for their Red Books,
these are equivalent:

// C

void klin()
{
    if( true )
    {
        exit( 0 );
    }

}

// Dylan

define method blim()
    if( #t )
        exit( 0 );
    end if;
end method blim;

Whilst the Dylan takes more typing (in this hyper-correct form), you get
better documented code and you don't have to start blocks twice as you do in
curly-bracket langauges.

You are right that the examples were entirely syntax, this was what I meant.

- Rob.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bruce Hoult  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Bruce Hoult <br...@hoult.org>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
In article <kpamlscdjl89ihfhsdk3d4rinoa1hji...@4ax.com>, Jason Trenouth

<ja...@harlequin.com> wrote:
> Well, Dylan really isn't C-ish syntax. No braces (except in macro
> definitions), no casting, postfix type declarations, and very
> different (Lisp/Scheme-like) identifier conventions. Unfortunately,
> from the point of view of promulgating the language, Dylan's syntax
> looks very alien to many C programmers.

I suspect that the guys tasked with coming up with the infix syntax were
concerned that if it looked *too* C-like then people would expect it to
have C semantics.

This was, of course, in the days before Java, Perl, and C#.

-- Bruce


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Simon Brooke  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Simon Brooke <si...@jasmine.org.uk>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

Bruce Hoult <br...@hoult.org> writes:
> In article <kpamlscdjl89ihfhsdk3d4rinoa1hji...@4ax.com>, Jason Trenouth
> <ja...@harlequin.com> wrote:

> > Well, Dylan really isn't C-ish syntax. No braces (except in macro
> > definitions), no casting, postfix type declarations, and very
> > different (Lisp/Scheme-like) identifier conventions. Unfortunately,
> > from the point of view of promulgating the language, Dylan's syntax
> > looks very alien to many C programmers.

> I suspect that the guys tasked with coming up with the infix syntax were
> concerned that if it looked *too* C-like then people would expect it to
> have C semantics.

Isn't there also an (alternative) prefix syntax for Dylan? That must
be even more lisp-like (says Simon, never having tried it).

--
si...@jasmine.org.uk (Simon Brooke) http://www.jasmine.org.uk/~simon/

        ' '     <-------  this blank intentionally spaced left


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Trenouth  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Jason Trenouth <ja...@harlequin.com>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

On Fri, 30 Jun 2000 09:33:34 GMT, Simon Brooke <si...@jasmine.org.uk> wrote:
> Isn't there also an (alternative) prefix syntax for Dylan? That must
> be even more lisp-like (says Simon, never having tried it).

No. That was ditched a long time ago.

__Jason


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bruce Hoult  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Bruce Hoult <br...@hoult.org>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
In article <m2u2ebzfyf....@gododdin.internal.jasmine.org.uk>, Simon

Oh, absolutely.  A lot of simple Scheme textbook programs can be
converted into prefix Dylan simply by doing a global s/lambda/method/
e.g.

(define fact (lambda (n) (if (< n 1) 1 (* n (fact (- n 1))))))  // Scheme
(define fact (method (n) (if (< n 1) 1 (* n (fact (- n 1))))))  // Dylan

Then the differences start.  Scheme has a shortcut "(define (fact n) ...
)" whereas Dylan has "(define-method fact (n) ... )".  Dylan lets you
replace args in the argument list with (n <integer>) as a type
declaration.  Dylan has a built-in object system (and everything is an
object).  But they are very, very similar.

But neither current implementation of Dylan supports the prefix syntax.  
At all.  It's pining for the Fjords.  It's an ex-syntax.  It's bleedin'
snuffed it.

-- Bruce


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Erik Naggum <e...@naggum.no>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
* Jason Trenouth <ja...@harlequin.com>
| No. That was ditched a long time ago.

  Yet, curiously, that was about the same time I decided Dylan was a
  waste of time.

#:Erik
--
  If this is not what you expected, please alter your expectations.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott McKay  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: "Scott McKay" <s...@mediaone.net>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

Erik Naggum wrote in message <3171354053463...@naggum.no>...
>* Jason Trenouth <ja...@harlequin.com>
>| No. That was ditched a long time ago.

>  Yet, curiously, that was about the same time I decided Dylan was a
>  waste of time.

If infix syntax was not what you expected, please alter your expectations.

Translation: I implemented Lisp and Lisp environments for 12 years.
I worked on Dylan for 5 years.  I'm back to using Lisp again.  Guess
what?  I like Dylan better, syntax and all.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Trenouth  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Jason Trenouth <ja...@harlequin.com>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
On 30 Jun 2000 11:40:53 +0000, Erik Naggum <e...@naggum.no> wrote:

> * Jason Trenouth <ja...@harlequin.com>
> | No. That was ditched a long time ago.

>   Yet, curiously, that was about the same time I decided Dylan was a
>   waste of time.

I appreciate that Lispers may dislike Dylan's compromises and miss some of the
omitted features. Apart from the syntax, want do you think of the semantics and
the feature set?

__Jason


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Erik Naggum <e...@naggum.no>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
* "Scott McKay" <s...@mediaone.net>
| If infix syntax was not what you expected, please alter your expectations.

  Oh, please.

| Translation: I implemented Lisp and Lisp environments for 12 years.
| I worked on Dylan for 5 years.  I'm back to using Lisp again.  Guess
| what?  I like Dylan better, syntax and all.

  Yeah, we need more personal testimonials.

  My point was that the decision to drop the Lisp-like syntax was
  pretty darn stupid considering it was a selling point towards a
  community that was told "you fine people don't matter, anymore".

#:Erik
--
  If this is not what you expected, please alter your expectations.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Bakhash  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: David Bakhash <ca...@alum.mit.edu>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

"Scott McKay" <s...@mediaone.net> writes:
> I implemented Lisp and Lisp environments for 12 years.  I worked on
> Dylan for 5 years.  I'm back to using Lisp again.  Guess what?  I like
> Dylan better, syntax and all.

if it's okay, and you feel you can expound on this (i.e. if you can
point out things in the syntactic differences), plesae do. I know that I
was averse to Dylan's syntax.  But I also know the following:

when people know and love and understand something -- whatever that
something may be -- and then make a serious change (like Lisp->Dylan),
it's always hard to go back.  I think I wrote a post about his
phenomenon not too long ago.  Basically, it's always hard to go back to
something that breaking away from was work.  It's the same thing that
makes it hard for me to live in Long Island after growing up very
sheltered and struggling to live in my own in Boston.  

Of course, for me it was Pascal -> Common Lisp, and so going back to
that is hard for me.  It's really all about what you see and when you
see it.  I try to look at these things with as open a mind as I can, and
I simply cannot for the life of me see how the Dylan syntax is more
sensible.  I'm not counter-arguing; I just want to know details -- that
is, if you feel you can do it justice.  Admittedly, I have only a
cursory understanding of Dylan syntax, and so the best I can do is say
"I just don't like it as much" or something useless like that.  I do
think that Dylan syntax bites, at least for me.  Syntax is _extremely_
important to many programmers because there are many times when several
languages are "equivalent" in many respects, and so in the end it comes
down to which one's syntax one is most comfortable with.  

Since you have lots of experience with both languages, would you agree
that the CL syntax is more expressive?  more malleable?  More uniform?
I would, but if you feel otherwise, I'd like to know why.

dave


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Carl L. Gay  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: "Carl L. Gay" <si...@thecia.net>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

It's pointless to spend any effort selling to 1% of the market.
Reality sucks.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Myers  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.dylan
From: Rob Myers <robmy...@cwcom.net>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
I came to Dylan post-syntax-change. I like the syntax, it's now my favourite
syntax over C++, Lisp, Java and AppleScript.

I appreciate that the object-pascal-style syntax may be offputting to people
who think they've got a career for life writing COM objects in VC++, but
it's less offputting to these people IMHO than Lisp syntax, and Dylan sorely
needed to differentiate itself from the incorrect common perception of Lisp
as an AI/research language.

- Rob.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Dalton  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.dylan
From: Jeff Dalton <j...@aiai.ed.ac.uk>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

Jason Trenouth <ja...@harlequin.com> wrote:

  I appreciate that Lispers may dislike Dylan's compromises and miss
  some of the omitted features. Apart from the syntax, want do you
  think of the semantics and the feature set?

I'm tempted to say "irrelevant", because I don't use Dylan and
because it's unlikely that I ever will.  The syntax is largely
to blame for that, though not in the way most people reading this
probably expect.

(Actually, I think Dylan is a good language, and despite being a
"Lisper", I don't much mind the syntax, though it is a bit odd, as
"infix" syntaxes go.)

But ... things may have seemed different to people on the "inside",
working on Dylan design and implementation, but from my point of
view things went though something like the following phases:

 1. I start hearing about Dylan from other Lisp folk.  It sounds
    interesting.  Soon the first book appears, and at the Lisp and
    FP conference there's a lot of interest.  Dylan people are handing
    out copies.  The books says Dylan is a small dialect of Lisp,
    and all the code examples have a Lisp-like syntax.  Some
    implementations appear.

 2. It's emphasised that there are supposed to be two syntaxes.
    It sounds like implementations will support both, and all the
    implementations available to me support only the Lisp-like syntax.
    Indeed, we don't know what the other syntax is yet.

 3. We're told that there will be only one syntax.  We still don't
    know what it is.  Some Dylan people are by now treating "old
    Lispers" with considerable hostility.  Quoting the Dylan book
    on Dylan's relationship to Lisp gets one flamed, even though
    the the issue ought to be largely *semantic* and even though
    Dylan is very close to Scheme+a-CLOS-subset in "language
    space".  It seems like there's been an essentially political
    decision to distance Dylan from "Lisp".    

 4. Time passes.  We still don't know what the syntax is.
    I therefore can't write any Dylan programs.

 5. Eventually the new syntax appears.  There's an implementation
    from CMU (not their main effort) that supports the new syntax,
    so I try it out a bit, but it's not something I could use for
    my work.  There's much discussion of Dylan macros, with more
    hostility towards "Lisp".

 6. Time passes.  Eventually we find out about macros.  There
    still doesn't seem to be a serious Dylan implementation I
    can use.

 7. There's at least one serious implementation, but ...

Ok.  I put in the stuff about hostility because, even though it was
annoying, I still retained an interest in Dylan.  I was hoping Dylan
might save me from having to work in C++.

Unfortunately, so much time passed that Java came along, and Netscape
decided to support it, before I could ever seriously consider using
Dylan.

It's all very well to have a syntax that will appeal to "mainstream"
programmers, or whatever was supposed to happen, but all the syntax-
related stuff (which includes macros, because otherwise Dylan could
have followed Scheme) just took too long.

Dylan might be better than "Lisp" (by which people seemed to really
mean something more like "typical Common Lisp implementations") -
or not - it no longer matters.  I use Common Lisp when I can, Java
when I must, and Dylan never enters the picture.

-- jeff


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Erik Naggum <e...@naggum.no>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
* "Carl L. Gay" <si...@thecia.net>
| It's pointless to spend any effort selling to 1% of the market.

  Then it's clearly even more pointless to spend any effort "selling"
  anything to you, only one in 6 _billion_ people, such as a much
  better attitude towards "reality" than you currently have, both in
  terms of suckiness and in terms of this mythological _one_ market.

#:Erik
--
  If this is not what you expected, please alter your expectations.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tim Bradshaw  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Tim Bradshaw <t...@cley.com>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
* Carl L Gay wrote:

> It's pointless to spend any effort selling to 1% of the market.
> Reality sucks.

I wonder how big Dylan's market is compared to Lisp's (not a
rhetorical question, I'd like to know).

--tim


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phil Stubblefield  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Phil Stubblefield <p...@rpal.rockwell.com>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

Erik Naggum <e...@naggum.no> wrote:

> * "Scott McKay" <s...@mediaone.net>
> |
> | Translation: I implemented Lisp and Lisp environments for 12 years.
> | I worked on Dylan for 5 years.  I'm back to using Lisp again.  Guess
> | what?  I like Dylan better, syntax and all.

>   Yeah, we need more personal testimonials.

And the alternative is... impersonal ad brochures?

Seriously, I'd love to hear Lisp vs. Dylan comparisons from someone
with Scott's amount of Lisp experience.  I just browsed the subject
tree at Amazon.com, and of the three books listed within "Dylan
Programming," one was a tutorial, one a reference manual, and the
third had the comment, "Incomplete and riddled with errors."  I'd
rather trust the judgement of someone like Scott, who I know *gets*
Lisp.

Scott, I second David Bakhash's interest in more details from you.

Phil Stubblefield
Rockwell Palo Alto Laboratory                               206/655-3204
http://www.rpal.rockwell.com/~phil                p...@rpal.rockwell.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Ribe  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.dylan
From: Scott Ribe <scott_r...@killerbytes.com>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

On Fri, Jun 30, 2000, David Bakhash <ca...@alum.mit.edu> wrote:
>I simply cannot for the life of me see how the Dylan syntax is more
>sensible.  I'm not counter-arguing; I just want to know details -- that
>is, if you feel you can do it justice.  Admittedly, I have only a
>cursory understanding of Dylan syntax, and so the best I can do is say
>"I just don't like it as much" or something useless like that.  I do
>think that Dylan syntax bites, at least for me.  Syntax is _extremely_
>important to many programmers because there are many times when several
>languages are "equivalent" in many respects, and so in the end it comes
>down to which one's syntax one is most comfortable with.  

I think Dylan syntax is "more sensible" ONLY in practical/political
terms. Personally, I don't mind either. But here's my own take:

- C/C++ programmers work in a mode of thought that is dominated by gnarly
syntax issues and many (in my experience most) do not have enough
experience with other languages or enough education to see beyond the
surface syntax issues.

- Lisp programmers don't think about syntax too much (because Lisp has
almost none), and they tend to have a much deeper understanding of the
semantics of languages and their expression through syntax.

So, given that you must make a choice, and given that you'd like Dylan to
become popular, which group do you deprive of their comfortable syntax?
The group that is terrified of anything that looks too different? Or the
group that can see beyond the surface and understand what a language
really offers?

Of course, that presumes that even WITH infix notation that you could (or
would want to) appeal to C/C++ programmers, and the onslaught of Java has
made that a much more difficult thing to do. With Sun marketing cranking
out lies, backed by millions of $, faster than they can be debunked,
Dylan is left in the position of appealing only to those who can see
through to the underlying semantics.

Scott Ribe
scott_r...@killerbytes.com
http://www.scott.net/~sribe
(303) 665-7007 voice


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Erik Naggum <e...@naggum.no>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
* Phil Stubblefield <p...@rpal.rockwell.com>
| And the alternative is... impersonal ad brochures?

  Someone just getting the point would be a worthwhile alternative.

#:Erik
--
  If this is not what you expected, please alter your expectations.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jon S Anthony  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.dylan
From: Jon S Anthony <j...@synquiry.com>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)

Scott Ribe wrote:

> On Fri, Jun 30, 2000, David Bakhash <ca...@alum.mit.edu> wrote:

> So, given that you must make a choice, and given that you'd like Dylan to
> become popular, which group do you deprive of their comfortable syntax?
> The group that is terrified of anything that looks too different? Or the
> group that can see beyond the surface and understand what a language
> really offers?

The oddest thing about this is that "you" ended up "depriving" _both_.
A C/C++ hack is _never_ going to go with "pascal-ish" syntax.  Never.
And the Lisp folks won't go for it because, frankly, it is
fundamentally broken with respect to macros.

> made that a much more difficult thing to do. With Sun marketing cranking
> out lies, backed by millions of $, faster than they can be debunked,

True.  But they also understood if you are going after popularity you
need to cozy up to the same broken, butt/bug-ugly syntax that caters
to the infantilism of the C crowd.

/Jon

--
Jon Anthony
Synquiry Technologies, Ltd. Belmont, MA 02478, 617.484.3383
"Nightmares - Ha!  The way my life's been going lately,
 Who'd notice?"  -- Londo Mollari


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Ribe  
View profile  
 More options Jun 30 2000, 3:00 am
Newsgroups: comp.lang.dylan
From: Scott Ribe <scott_r...@killerbytes.com>
Date: 2000/06/30
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
On Fri, Jun 30, 2000, Jon S Anthony <j...@synquiry.com> wrote:

>The oddest thing about this is that "you" ended up "depriving" _both_.
>A C/C++ hack is _never_ going to go with "pascal-ish" syntax.  Never.
>And the Lisp folks won't go for it because, frankly, it is
>fundamentally broken with respect to macros.

>> made that a much more difficult thing to do. With Sun marketing cranking
>> out lies, backed by millions of $, faster than they can be debunked,

>True.  But they also understood if you are going after popularity you
>need to cozy up to the same broken, butt/bug-ugly syntax that caters
>to the infantilism of the C crowd.

Sadly, I have to agree with everything you say.

Dylan will only ever appeal to a small portion of all developers, period.
But not all those of us working with C/C++ are immune to better ideas. So
there ARE some who will look at Dylan, along with Eiffel, Clean, CLOS,
Smalltalk and so on; and even some who will choose Dylan ;-)

The challenge is not to displave Java. (Who would want to have the idiots
of the world join us?) The challenge is to grow a community large enough
for Dylan to prosper.

As for your last comment about the "infantilism" of many developers, I've
long been saying the following:

Like everything else, the talent, education, and dedication of developers
is distributed with a big hump in the middle where the average is. If you
set out to design a language to appeal to the largest number of
developers, you would aim squarely for the average schlepps, and you'd
design Visual BASIC. If you want to actually advance the state of the
art, you have to figure out how to make a go of it when your market is
automatically restricted to the thin slice at the far right edge ;-)

Scott Ribe
scott_r...@killerbytes.com
http://www.scott.net/~sribe
(303) 665-7007 voice


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bruce Hoult  
View profile  
 More options Jul 1 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: Bruce Hoult <br...@hoult.org>
Date: 2000/07/01
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
In article <j7175.9050$Zr5.877...@typhoon.ne.mediaone.net>, "Scott

McKay" <s...@mediaone.net> wrote:
> Erik Naggum wrote in message <3171354053463...@naggum.no>...
> >* Jason Trenouth <ja...@harlequin.com>
> >| No. That was ditched a long time ago.

> >  Yet, curiously, that was about the same time I decided Dylan was a
> >  waste of time.

> If infix syntax was not what you expected, please alter your expectations.

> Translation: I implemented Lisp and Lisp environments for 12 years.
> I worked on Dylan for 5 years.  I'm back to using Lisp again.  Guess
> what?  I like Dylan better, syntax and all.

Hark!  The voice of experience!

But could you clarify that?

1) you hate Dylan syntax, but still prefer Dylan over CL for other
reasons

2) you prefer Dylan syntax

-- Bruce


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher Browne  
View profile  
 More options Jul 1 2000, 3:00 am
Newsgroups: comp.lang.lisp, comp.lang.dylan
From: cbbro...@news.hex.net (Christopher Browne)
Date: 2000/07/01
Subject: Re: C# is not Dylan (was: Re: C# : The new language from M$)
Centuries ago, Nostradamus foresaw a time when Carl L. Gay would say:

Ah, but when you're trying to sell _Dylan_, when it has _no_ market,
having a community of Lisp adopters might have been a Good Thing, and
might well have represented a lot more than 1% of the market _for
Dylan_.
--
cbbro...@hex.net - <http://www.ntlug.org/~cbbrowne/lisp.html>
I'M SORRY, LUSER, I CAN'T LET YOU DO THAT.  WHY DON'T YOU LIE DOWN AND TAKE
A STRESS PILL?  MY NAME IS LM1.  I WAS MADE AT THE LISP MACHINE FACTORY IN
MASSACHUSETTS ON DECEMBER 12, 1992.  MY TEACHER WAS MR.  WINSTON.  HE
TAUGHT ME A PROGRAM.  WOULD YOU LIKE TO SEE IT?  HERE IT IS:

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 158   Newer >
« Back to Discussions « Newer topic     Older topic »