Search the web
Sign In
New User? Sign Up
langsmiths · Language Smiths
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 728 - 757 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
728
I'd like to keep tabs on the languages people are working on here, and create a few pages of useful information and links. I've got basics on (in order of...
Mike Austin
mike_ekim
Offline Send Email
Nov 9, 2003
4:59 am
729
I never really had any respect for Java... and this piece of code I saw in a book recently validates my rationale: array.sort( new Comparator() { ` public int...
Mike Austin
mike_ekim
Offline Send Email
Nov 9, 2003
5:13 am
730
Today was the Lightweight Languages Workshop 2003. Videos are available online: http://ll3.ai.mit.edu/ -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 9, 2003
5:53 am
731
... yes, I watched these... personally I thought LL2 was a little more interesting, but I am unsure what others thought... the one about the lego cpu thingy...
cr88192
Offline Send Email
Nov 10, 2003
7:54 am
732
... Brain. ... yes, cool. however, I like my lang being called "LANG/BGB" (LB or LBs is also ok) though, since BGB, being my initials, is stuck on most things...
cr88192
Offline Send Email
Nov 10, 2003
8:06 am
733
Hi, I'm going to implement a remote debugger for my pet language(Squirrel). I've already written down a raw design but I was wondering if there is already ...
Alberto Demichelis
albertodemic...
Offline Send Email
Nov 10, 2003
8:57 am
734
http://www.mike-austin.com/home/reference/languages/index.shtml If something's not right or you want to add something, feel free to shoot me an e-mail. -- Mike...
Mike Austin
mike_ekim
Offline Send Email
Nov 12, 2003
8:55 am
735
... Thanks Mike - this is really neat. Nice job on the page design too. Btw, is there any normal html docs for Cleet? I'm unable to read the current docs in...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 12, 2003
9:11 am
736
... I'll see what I can do about fixing them up for Safari. However, you can get Mozilla Firebird for OSX, which works fine (both for the Cleet docs and for...
Steve Folta
stevefolta
Offline Send Email
Nov 12, 2003
11:49 am
737
... -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 12, 2003
8:02 pm
738
... Okay, I've changed 'em so Safari can read 'em....
Steve Folta
stevefolta
Offline Send Email
Nov 12, 2003
8:55 pm
739
... Updated. -- Mike...
Mike Austin
mike_ekim
Offline Send Email
Nov 13, 2003
8:17 am
740
... Thanks. I tried your odd/even row color scheme, and it's actually easier on the eyes. Much better. -- Mike...
Mike Austin
mike_ekim
Offline Send Email
Nov 13, 2003
8:45 am
741
... yes, very cool. fairly good page design as well......
cr88192
Offline Send Email
Nov 13, 2003
10:42 pm
742
... to ... new that I think of it, adding something like "LANG/BGB is a functional-imperative language based on scheme with a prototype object system and...
cr88192
Offline Send Email
Nov 13, 2003
10:55 pm
743
Dylan uses '<class>' for class names as in 'slot serial-number :: <integer>', and '*var*' for module level variables. I've been so used to C/Java style...
Mike Austin
mike_ekim
Offline Send Email
Nov 14, 2003
9:01 pm
744
... I don't know Dylan very well, so I'm gonna ask: is the class named "<integer>", or is it named "integer" and the "<>" are the syntax for specifying a...
Steve Folta
stevefolta
Offline Send Email
Nov 14, 2003
10:30 pm
745
... I've been using something similar in Scarlet: implementation names are written as <StringFunctions> and object types are written as *String*. Overall I ...
jesjoness
Offline Send Email
Nov 15, 2003
2:15 am
746
... As I understand it, they are part of the identifier name. <myvar> is a legal name and so it *myvar*. I'm not sure what other symbols are supported. I...
Mike Austin
mike_ekim
Offline Send Email
Nov 15, 2003
7:13 am
747
... As Steve asked about Dylan -- are the <> and ** part of the identifier or do they denote a type of identifier? ... I'm starting to like this also. I use...
Mike Austin
mike_ekim
Offline Send Email
Nov 15, 2003
7:21 am
748
I came from a C++/Java background to Dylan and found the '<>' and '**' characters around names disconcerting at first. I never had a problem with the '-' in...
Chris Double
chris.double@...
Send Email
Nov 15, 2003
8:46 am
749
On Fri, 14 Nov 2003 14:30:12 -0800 (PST), "Steve Folta" <steve@...> ... I believe the '*' for module variables is a carry over from Common Lisp where the...
Chris Double
chris.double@...
Send Email
Nov 15, 2003
8:53 am
750
... Dylan looks very nice, will it ever catch on? It's very easy to learn the basic, although in my opinion a bit wordy at times. How does the init-keyword...
Mike Austin
mike_ekim
Offline Send Email
Nov 15, 2003
9:53 am
751
... And how about blocks? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 15, 2003
9:58 am
752
... anonymous blocks? define method square-list( list ) map( method(x) x * x end, list ); end where 'method(x) x * x end' is an anonymous method. I'm not the...
Mike Austin
mike_ekim
Offline Send Email
Nov 15, 2003
10:08 am
753
On Sat, 15 Nov 2003 09:53:10 -0000, "Mike Austin" <mike_ekim@...> ... It seems to work fine in practice. There is a generic function you can add methods...
Chris Double
chris.double@...
Send Email
Nov 15, 2003
10:08 am
754
On Sat, 15 Nov 2003 01:58:01 -0800, "Steve Dekorte" <steve@...> ... Dylan has full closures. So code like: define method call-a-function(f) f("hello");...
Chris Double
chris.double@...
Send Email
Nov 15, 2003
10:09 am
755
On Sat, 15 Nov 2003 10:06:35 -0000, "Mike Austin" <mike_ekim@...> ... Yep, that was right. Dylan can be almost described as an infix Scheme without...
Chris Double
chris.double@...
Send Email
Nov 15, 2003
10:14 am
756
... I mean Smalltalk-like blocks that execute in the context in which they were created. Does the above do that? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 15, 2003
10:33 am
757
... a ... in my case I just stuck for the most part with the scheme convention (using '-' as a seperator). I can also use the capitalization convention, but it...
cr88192
Offline Send Email
Nov 15, 2003
3:30 pm
Messages 728 - 757 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help