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
Will Clinger's Types Rant
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
  8 messages - Collapse all  -  Translate all to Translated (View all originals)
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
 
Matthew D Swank  
View profile  
 More options Sep 26 2005, 12:39 pm
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: Matthew D Swank <akopa-is-very-much-like-my-mail-addr...@c.net>
Date: Mon, 26 Sep 2005 11:39:08 -0500
Local: Mon, Sep 26 2005 12:39 pm
Subject: Will Clinger's Types Rant
I was going to post this in the 'What's so great about lisp?' thread since
there are several brush fires in that thread on the efficacy of static
typing, but those sub-threads are all over the place.  So...

Could anyone who saw Will Clinger's talk at this year's ILC explain the
gist of this slide:
http://www.ccs.neu.edu/home/will/Research/ILC2005/Slides/typesrant6.html

I have an idea what he might be talking about, but I wasn't there.

Thanks,

Matt

--
"You do not really understand something unless you can
 explain it to your grandmother." — Albert Einstein.


 
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.
Matthew D Swank  
View profile  
 More options Sep 26 2005, 12:56 pm
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: Matthew D Swank <akopa-is-very-much-like-my-mail-addr...@c.net>
Date: Mon, 26 Sep 2005 11:56:16 -0500
Local: Mon, Sep 26 2005 12:56 pm
Subject: Re: Will Clinger's Types Rant

On Mon, 26 Sep 2005 11:39:08 -0500, Matthew D Swank wrote:
> Could anyone who saw Will Clinger's talk at this year's ILC explain the
> gist of this slide:
> http://www.ccs.neu.edu/home/will/Research/ILC2005/Slides/typesrant6.html

Also, I noticed that Clinger liked John Allen's talk about the future of
software engineering.  This is interesting, since one of the conclusions
Allen reaches is that engineers will end up providing guarantees about
software through the use of (static) type-systems.  How does this fit into
the lisp/scheme world?

Matt

--
"You do not really understand something unless you can
 explain it to your grandmother." — Albert Einstein.


 
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.
Ulrich Hobelmann  
View profile  
 More options Sep 26 2005, 2:43 pm
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: Ulrich Hobelmann <u.hobelm...@web.de>
Date: Mon, 26 Sep 2005 20:43:25 +0200
Local: Mon, Sep 26 2005 2:43 pm
Subject: Re: Will Clinger's Types Rant
Matthew D Swank wrote:

I didn't see him, but here's my two cents anyway.

Hm, strong typing could be something like verifying that the if and else
clause of a function return values of the same type, as that is
obviously important if the caller is to rely on that.

Strongarm typing might be something like C requiring you to declare a
struct just so you can return more than one value from a function.

> I have an idea what he might be talking about, but I wasn't there.

Same here.

Optional type checking provides exactly the above, and doesn't prevent
code from being run.

--
Some people like democracy.  That's because it does whatever the
majority wants, and because they happen to be part of that majority.
"Do you want the Total War?"


 
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.
Ray Blaak  
View profile  
 More options Sep 26 2005, 3:02 pm
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: Ray Blaak <rAYbl...@STRIPCAPStelus.net>
Date: Mon, 26 Sep 2005 19:02:59 GMT
Local: Mon, Sep 26 2005 3:02 pm
Subject: Re: Will Clinger's Types Rant

Ulrich Hobelmann <u.hobelm...@web.de> writes:
> Matthew D Swank wrote:
> I didn't see him, but here's my two cents anyway.

> > http://www.ccs.neu.edu/home/will/Research/ILC2005/Slides/typesrant6.html

> Hm, strong typing could be something like verifying that the if and else
> clause of a function return values of the same type, as that is obviously
> important if the caller is to rely on that.

I wouldn't think so. It should mean that the type of something cannot be
abused or violated, i.e. interpreted as a value of another type. Perl "is it a
string or a number" values are a great example of the violation of strong
typing.

Note that I am not touching on statically versus dynamically typed here. Lisp
is a dynamically strongly typed languages in that you cann't abuse the type of
a value. A language like Ada is statically strongly typed, relying less on the
runtime side and instead making the bindings strongly typed. A language like
ML seems make things so that you can't tell the difference: your very thoughts
must be strongly typed.

> Strongarm typing might be something like C requiring you to declare a struct
> just so you can return more than one value from a function.

I would guess forcing one to do that things that make statically typed
languages tedious: force everything to be explicitly
declared/constructed/proved/whatever.

--
Cheers,                                        The Rhythm is around me,
                                               The Rhythm has control.
Ray Blaak                                      The Rhythm is inside me,
rAYbl...@STRIPCAPStelus.net                    The Rhythm has my soul.


 
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.
William D Clinger  
View profile  
 More options Sep 26 2005, 4:24 pm
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: "William D Clinger" <cesuraS...@verizon.net>
Date: 26 Sep 2005 13:24:17 -0700
Local: Mon, Sep 26 2005 4:24 pm
Subject: Re: Will Clinger's Types Rant

Matthew D Swank wrote:
> Could anyone who saw Will Clinger's talk at this year's ILC explain
> the gist of this slide:
> http://www.ccs.neu.edu/home/will/Research/ILC2005/Slides/typesrant6.html

I didn't see that talk either, but the audio for it is online at
http://www.international-lisp-conference.org/2005/media/clinger-audio...

(Get him!)

Will


 
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.
Matthew D Swank  
View profile  
 More options Sep 26 2005, 4:28 pm
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: Matthew D Swank <akopa-is-very-much-like-my-mail-addr...@c.net>
Date: Mon, 26 Sep 2005 15:28:50 -0500
Local: Mon, Sep 26 2005 4:28 pm
Subject: Re: Will Clinger's Types Rant

On Mon, 26 Sep 2005 13:24:17 -0700, William D Clinger wrote:
> I didn't see that talk either, but the audio for it is online at
> http://www.international-lisp-conference.org/2005/media/clinger-audio...

Thanks! (I don't know how I missed that)

Matt

--
"You do not really understand something unless you can
 explain it to your grandmother." — Albert Einstein.


 
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.
Charles Hoffman  
View profile  
 More options Oct 15 2005, 11:42 am
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: Charles Hoffman <nothinghapp...@mchsi.com>
Date: Sat, 15 Oct 2005 15:42:00 GMT
Subject: Re: Will Clinger's Types Rant

I didn't RTFA yet but I felt the need to caution us about not confusing
static typing and strong typing, which are different things.  Static
typing is when types can be determined at compile time, i.e. are
specified in the text of the code; dynamic typing is when type-checking
waits until runtime.  Strong/weak typing is another dimension, dealing
with how strictly types are enforced.  Lisp/Scheme is strongly (= only
works on numbers, for instance), but dynamically, typed.  C is
statically, but more weakly, typed.  An example of very strong static
typing would be Ada.

--ch--


 
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.
Ulrich Hobelmann  
View profile  
 More options Oct 15 2005, 2:03 pm
Newsgroups: comp.lang.scheme, comp.lang.lisp
From: Ulrich Hobelmann <u.hobelm...@web.de>
Date: Sat, 15 Oct 2005 20:03:38 +0200
Local: Sat, Oct 15 2005 2:03 pm
Subject: Re: Will Clinger's Types Rant

Yes, I meant static strong typing, thanks.  "Optional type checking"
should read "optional static checking."

--
Blessed are the young for they shall inherit the national debt.
        Herbert Hoover


 
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.
End of messages
« Back to Discussions « Newer topic     Older topic »