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...
Show off your group to the world. Share a photo of your group with us.

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 2244 - 2273 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2244
... My new language that I'm working on (Vlange) has keyword arguments only, with a more Smalltalk-style syntax. A function call takes this form: name...
Steve Folta
stevefolta
Offline Send Email
Jan 4, 2005
10:08 pm
2245
... In Smalltalk, keywords messages have the lowest precedence, so the first example would work as expected. Do you not want it to work this way? You'd have...
Mike Austin
mike_ekim
Offline Send Email
Jan 5, 2005
2:58 am
2246
... do you allow the keywords out of order? in SuperCollider you can pass any argument either positionally or as a keyword argument, and the keyword arguments...
James McCartney
james_e_mcca...
Offline Send Email
Jan 5, 2005
8:19 am
2247
... About a month. ... I also try to avoid "line noise". And, yes, avoiding ambiguity seems to be an intrinsic part of language design, although I think I'm...
Steve Folta
stevefolta
Offline Send Email
Jan 5, 2005
7:22 pm
2248
... I decided not to allow arguments in any order, at least not at first. But it should be easy to do; simply sort the arguments alphabetically. Mixing it...
Steve Folta
stevefolta
Offline Send Email
Jan 5, 2005
7:37 pm
2249
I use the method described here: Minimizing Row Displacement Dispatch Tables http://www.cs.ucsb.edu/labs/oocsb/papers/TRCS95-05.html...
James McCartney
james_e_mcca...
Offline Send Email
Jan 6, 2005
5:27 am
2250
That's a nifty way to do it. :) Do you have any stats on the table compression achieved for SC? Mike ... as a ... first....
Mike
mike_ekim
Offline Send Email
Jan 6, 2005
8:16 am
2251
... Awesome! Thanks so much. That's just what I was looking for: a dispatch method for dynamically-typed languages that's competitive in time and space with...
Steve Folta
stevefolta
Offline Send Email
Jan 6, 2005
10:05 pm
2252
... the argument names are not part of the selector. thing.play(when: x, where: y, how: z); the selector is 'play'...
James McCartney
james_e_mcca...
Offline Send Email
Jan 7, 2005
12:28 am
2253
... This code is not quite correct. You have to check whether the method you get out of the dispatch table has the same selector that you were looking for...
James McCartney
james_e_mcca...
Offline Send Email
Jan 7, 2005
12:52 am
2254
... my compressed table is 16% of the size of the uncompressed table. I have a pretty dumb packing algorithm so my fill rate is only 62% meaning I could get...
James McCartney
james_e_mcca...
Offline Send Email
Jan 7, 2005
12:59 am
2255
... Right. The paper states that the method will check that, which is why I'm passing "print__offset". In practice, I too would have the dispatch code do the...
Steve Folta
stevefolta
Offline Send Email
Jan 7, 2005
1:40 am
2256
... search ... them ... be ... keyword ... must ... simply "expression()" ... scoping, ... an ... overrided ... version ... localizes ... must ... these ... ...
cr88192
Offline Send Email
Jan 8, 2005
12:31 am
2257
I was thinking of the same thing over the holidays (and earlier). I want to write a text adventure game language and thought that this would be a cool way to...
rapl_lang
Offline Send Email
Jan 10, 2005
3:40 pm
2258
... This is very true. Matching is not bad when done at compile time like with pattern matching and guards, but full predicates in a dynamic language -- could...
Mike Austin
mike_ekim
Offline Send Email
Jan 12, 2005
7:42 am
2259
... Very true. But at the end of the day, all the predicate would have really done in a language with dynamic field lookup is enforce more type checking (e.g....
rapl_lang
Offline Send Email
Jan 12, 2005
11:01 am
2260
... [snipped] ... I'm kind of following here, but kind of not. :) Can you expand on this, say with an example and step by step notes. A while back ago I...
Mike Austin
mike_ekim
Offline Send Email
Jan 12, 2005
11:45 am
2261
... I'll try to explain it a bit better. Firstly, you have two sets of data, the arguments passed to the method and this array of temporary values. Let's call...
rapl_lang
Offline Send Email
Jan 12, 2005
12:29 pm
2262
... How does this work? Does the absence of a sucessful predicate raise an error which map catches? Could it work to do something like 1..10 filter: (x -> x %...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jan 15, 2005
6:09 pm
2263
... Yes, that would work. I just don't like how it adds another block to the code. I like list comprehension, but not the whole new syntax that it creates. ...
Mike Austin
mike_ekim
Offline Send Email
Jan 18, 2005
2:01 am
2264
I've been working on a new language called FISH. I thought that I would share my design goals to see what other language smiths think. Regards, Kevin A Frame...
kgrgreer
Offline Send Email
Jan 19, 2005
3:01 pm
2265
... I like this idea. An object is simply a context anyway. What other languages have you looked at, where did you get this idea for FISH? ... I'm not sure...
Mike Austin
mike_ekim
Offline Send Email
Jan 20, 2005
8:48 am
2266
Hi Mike, Thanks for you comments. ... I'll answer this in a separate email. ... The FISH grammar is extensible, to the point of being completely replaceable....
kgrgreer
Offline Send Email
Jan 20, 2005
5:20 pm
2267
... I've been programming this way (with Contexts) for ten years. With FISH I wanted to bring it into the language. Here are some notes that I wrote on the...
kgrgreer
Offline Send Email
Jan 20, 2005
5:34 pm
2268
This message is getting a bit long, so I've kept in only aspects that I will reply. ... This sounds kind of like Snobol, but at more of a syntax module level....
Mike Austin
mike_ekim
Offline Send Email
Jan 21, 2005
12:39 am
2269
... I just want to point out that the major unit test framework for C# (NUnit, which also works with several other .NET frameworks) does indeed traverse the...
Max Battcher
world_maker
Offline Send Email
Jan 21, 2005
12:56 am
2270
... I think that most of my programs already contain 10 different syntaxes: bash, Java, JavaDoc, HTML (both output and within JavaDoc), IDL, SQL, JSP, regex,...
kgrgreer
Offline Send Email
Jan 21, 2005
5:12 am
2271
I thought that this demo of the Subtext "language" might be of interest to a lot of people here: http://subtextual.org/demo1.html I found it quite amazing. I...
kgrgreer
Offline Send Email
Jan 21, 2005
4:50 pm
2272
Hi, Mike, ... This is one thing I'm playing with, in a Python-like language <http://tinyurl.com/5nhwc> I want to write the tests directly into the methods, so...
Carl Manaster
cmanaster
Offline Send Email
Jan 21, 2005
11:04 pm
2273
... I think this is a good idea (I've been pushing it for years). But the complexity of the factorial example was enough to convince me that Subtext doesn't do...
Steve Dekorte
stevedekorte
Offline Send Email
Jan 21, 2005
11:49 pm
Messages 2244 - 2273 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