Stories
Slash Boxes
Comments

News for nerds, stuff that matters

The Slate Programming Language

Posted by CowboyNeal on Sat Mar 27, 2004 12:34 PM
from the languages-named-after-microsoft-sites dept.
An anonymous reader writes "I know that we have had an influx of new programming languages of late, but I feel that this one merits special attention. Theoretical computer scientists and long-time Squeak and LISP contributors Brian Rice and Lee Salzman have been rapidly developing a language called Slate. It draws on the various strengths of the Self, Smalltalk, and LISP languages. To quote from the website: 'Slate is a prototype-based object-oriented programming language based on Self, CLOS, and Smalltalk. Slate syntax is intended to be as familiar as possible to a Smalltalker, rather than engaging in divergent experiments in that respect.' The beta release is currently being written in Common LISP."
This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • It works! (Score:3, Funny)

    by Timesprout (579035) on Saturday March 27 2004, @12:36PM (#8689527)
    I prototyped this mail using it
    • 1 reply beneath your current threshold.
  • Pretty Cool (Score:1, Informative)

    by Anonymous Coward on Saturday March 27 2004, @12:38PM (#8689540)
    Prototype based, multi-methods.

    Looks like dylan [gwydiondylan.org].

    • Re:Pretty Cool by be-fan (Score:3) Saturday March 27 2004, @03:27PM
    • Dylan was hardly successful by tommasz (Score:2) Saturday March 27 2004, @03:29PM
      • Re:Dylan was hardly successful by DrEasy (Score:2) Saturday March 27 2004, @05:20PM
        • 1 reply beneath your current threshold.
      • Re:Dylan was hardly successful (Score:4, Interesting)

        by be-fan (61476) on Saturday March 27 2004, @07:24PM (#8692011)
        So what? At this point, I've given up ever hoping that the "programmers out ther ein the trenches" will ever wise up to the superior tools that are out there. There is no point in bringing those people into discussions about languages, because they'll never accept something unless its almost exactly the same as what they are already using. Witness C#, which is ever so slowly absorbing Lisp techniques. So far, it has GC, and in 2.0 will have lambda. In another decade, it'll get multimethods, another decade later it'll get macros. By about 2030, they will have matched Lisp circa 1980.
        [ Parent ]
    • Dylan is technologically successful by oodl (Score:1) Saturday March 27 2004, @04:06PM
    • 2 replies beneath your current threshold.
  • Ah, great, Smalltalk (Score:4, Funny)

    by Deraj DeZine (726641) on Saturday March 27 2004, @12:39PM (#8689546)
    Slate syntax is intended to be as familiar as possible to a Smalltalker

    And for the rest of the world? Oh wait, sorry, Smalltalkers are gods among programmers. So foolish of me to think of myself before the Smalltalkers.

  • Obligatory. (Score:3, Insightful)

    by hot_Karls_bad_cavern (759797) on Saturday March 27 2004, @12:42PM (#8689568)
    (Last Journal: Wednesday February 23 2005, @01:02PM)
    If the new language doesn't support your needs, shut up and don't use it.

    Use what is best for the situation and don't whine.
    • Re:Obligatory. by crucini (Score:2) Sunday March 28 2004, @03:24AM
    • Re:What I use to satisfy my needs... by Deraj DeZine (Score:2) Saturday March 27 2004, @12:49PM
    • Re:Obligatory. by Anonymous Coward (Score:1) Saturday March 27 2004, @01:36PM
      • Re:Obligatory. (Score:5, Informative)

        by 11223 (201561) on Saturday March 27 2004, @02:32PM (#8690221)
        Sure. I'm not good of thinking of Haskell and Smalltalk examples, but since I know Lisp, I can throw out a few. If you've:
        • Played Jak & Daxter or any of its sequels
        • Played Abuse
        • Booked a reservation on Orbitz
        • Visited the campaign web sites of Bill Clinton in '96 or Howard Dean in '04
        • Used the Mirai facial-animation software or watched Gollum in Two Towers / RoTK
        • Used an AMD processor, parts of whose logic is validated via the ACL2 [utexas.edu] theorem-prover software
        • Used GNU/XEmacs
        • Used AutoCAD
        • Used the lisppaste [common-lisp.net] pastebot on a bunch of channels on Freenode
        You've used or seen a program that was written in a Lisp variant (all but Emacs and AutoCAD were done in ANSI Common Lisp). To find out more, visit CLiki [cliki.net].

        Not all the world is a desktop application with a GUI. Lisp and the other languages aren't going away in this space anytime soon. It's just too cumbersome to do many of these things in C++, and too slow to do them in Java (Common Lisp is usually native compiled).

        [ Parent ]
    • 2 replies beneath your current threshold.
  • by Viol8 (599362) on Saturday March 27 2004, @12:43PM (#8689576)
    Its fine for small scripts , rubbish for large programs as object and inheritance management becomes a minefield. I'm sure this language will
    provide hours of mental masturbation in various academic ivory towers but for those of us who have to code in the real world its not going to rock it.
  • Too obscure (Score:3, Insightful)

    by Animats (122034) on Saturday March 27 2004, @12:43PM (#8689578)
    (http://www.animats.com)
    By paragraph 2 of the manual, we're here:
    • Block closures

      A block closure is an object representing an encapsulable context of execution, containing local variables, input variables, the capability to execute expressions sequentially, and finally returns a value to its point of invocation. The default return value for a block is the last expression's value; an early return can override this.

    This is a language for people who like obscure semantics.

    Yes, closures are useful. I've used them in LISP. I even used one once in production code in Perl, to do some error handling cleanly. But when the manual starts out with closures, it's clear that somebody is getting too cute.

    This is a language for "l33t haxxors", of the old MIT AI Lab persuasion. Check out "instance specific dispatch". Now that's designed to totally confuse maintainers.

    • Re:Too obscure by Anonymous Coward (Score:3) Saturday March 27 2004, @12:49PM
      • Re:Too obscure (Score:4, Interesting)

        by Animats (122034) on Saturday March 27 2004, @01:05PM (#8689731)
        (http://www.animats.com)
        Well, it's one solution to the "how do I return a temporary" problem. There's elegance there. But it's expressed in an unnecessarily obscure way. The reference-counted Perl model is equally powerful but more comprehensible.
        [ Parent ]
    • Re:Too obscure by Anonymous Coward (Score:1) Saturday March 27 2004, @12:51PM
    • Re:Too obscure by Anonymous Coward (Score:1) Saturday March 27 2004, @01:36PM
    • Re:Too obscure by quigonn (Score:3) Saturday March 27 2004, @01:36PM
    • Re:Too obscure (Score:4, Insightful)

      by be-fan (61476) on Saturday March 27 2004, @03:03PM (#8690399)
      Closures are everything! All the crap that modern languages do with special-purpose features, like generators, iterators, etc, can be done with closures. Hell, OOP can be done on top of closures.
      [ Parent ]
      • 1 reply beneath your current threshold.
    • Re:Too obscure by hak1du (Score:2) Sunday March 28 2004, @05:57AM
    • Re:Too obscure by alangmead (Score:2) Saturday March 27 2004, @04:24PM
    • 1 reply beneath your current threshold.
  • right! (Score:2, Funny)

    by Anonymous Coward on Saturday March 27 2004, @12:45PM (#8689593)
    I C sea Slates on the C Shore!
  • by Rahga (13479) on Saturday March 27 2004, @12:45PM (#8689595)
    (http://rahga.com/ | Last Journal: Tuesday October 18 2005, @05:15PM)
    Even though, admittedly, this looks is a joke post, I couldn't help but think this the moment I noticed the article: "I don't really need a programming language that hates Catholic, can't grasp the realities of free-market economics, and is determined to write-in Howard Dean on the 2004 elections ballots..."
  • why slate (Score:5, Informative)

    by larry bagina (561269) on Saturday March 27 2004, @12:48PM (#8689609)
    (Last Journal: Friday October 19, @09:21PM)
    From the faq: Why did we decide on a new programming language?
    • Smalltalk-80 is over 20 years old. We don't think the original team intended for the model to last this long (well, from discussions on the Squeak [slashdot.org] mailing list, they've said so).
    • Smalltalk [slashdot.org] doesn't adequately express many design possibilities that show up often in good complex programs. Requiring classes, not allowing multiple dispatch, and not including some form of multiple inheritance is limiting for a lot of interesting cases.
    • The Common Lisp [slashdot.org] and Dylan [slashdot.org] communities have created some powerful interface toolkits which Smalltalk cannot easily take advantage of.
    • Cecil [slashdot.org] is statically-typed and not very dynamic. Dylan [slashdot.org] suffers from a case of too much syntax, and not enough emphasis on live environments.
    • Common Lisp [slashdot.org] is not object-centered or generic enough with its functions.
    • Goo [slashdot.org] uses the unfriendly Lisp syntax, and isn't quite suited to object-centered thinking.
    • Self [slashdot.org] turned out to be too strange an environment for Smalltalkers, and never had a decent implementation. Strongtalk [ucsb.edu] was bought up.
    • Bytecode virtual machines and chunk format are old hat. It'd be worth at least trying some different run-time setup.
    • The Squeak [slashdot.org] system is very powerful in terms of some experimental libraries and user interface ideas, but is based on an aging architecture and a license that is partly troublesome.

    i think smalltalk++ would be a better approach than inventing a new language. Look at C++: it's backwards compatable with C, so a C coder is already a C++ coder and can slowly start making use of new C++ features.

    • Re:why slate by bsharitt (Score:2) Saturday March 27 2004, @12:54PM
      • Re:why slate by aled (Score:2) Saturday March 27 2004, @04:30PM
    • Re:why slate (Score:4, Insightful)

      by Anonymous Coward on Saturday March 27 2004, @01:04PM (#8689724)
      "i think smalltalk++ would be a better approach than inventing a new language. Look at C++: it's backwards compatable with C, so a C coder is already a C++ coder and can slowly start making use of new C++ features."

      Or maybe, just maybe for once we could acknowledge that programmers are smart people and can learn new things. Lets get off trying to bend over backwards and make a broken language better -and- backwards compatible. This is exactly why C++ is the horror that it is today. Write a new clean language and just make sure that it links well with others. Then you can call functions from your old programs written in whatever the hell language you want, nobody knows and the code slowly moves over to a codebase that doesn't rape the programmer (like trying to use exceptions in a C++ program without the exception killing you!).
      [ Parent ]
      • Re:why slate by bonch (Score:2) Saturday March 27 2004, @05:43PM
        • 1 reply beneath your current threshold.
      • 1 reply beneath your current threshold.
    • Re:why slate by drooling-dog (Score:2) Saturday March 27 2004, @01:32PM
      • Re:why slate by RevAaron (Score:2) Tuesday March 30 2004, @12:27AM
    • 4 replies beneath your current threshold.
  • Deja vu (Score:5, Interesting)

    by spellraiser (764337) on Saturday March 27 2004, @12:49PM (#8689616)
    (Last Journal: Wednesday February 14 2007, @09:49AM)

    Slate is a prototype-based object-oriented programming language based on Self, CLOS, and Smalltalk.

    From a recent [slashdot.org] post:

    Prothon is a new industrial-strength, interpreted, prototype-based, object-oriented language that gets rid of classes altogether in the way that the Self language does.

    Does this point to a trend in language design?

    • Re:Deja vu by Patrik_AKA_RedX (Score:2) Saturday March 27 2004, @12:54PM
    • Re:Deja vu by Anonymous Brave Guy (Score:2) Saturday March 27 2004, @01:00PM
      • 1 reply beneath your current threshold.
    • Re:Deja vu by RovingSlug (Score:2) Saturday March 27 2004, @01:11PM
      • prototype based languages (Score:5, Informative)

        by Jecel Assumpcao Jr (5602) on Saturday March 27 2004, @01:40PM (#8689938)
        (http://www.merlintec.com/)
        When running a program, it is very likely that you will want to create new objects as you go along. You have some alternatives:
        • call a magic constructor fucntion (C++ and friends)
        • send a message like "new" to a factory object (like a class in Smalltalk)
        • send a message like "copy" or "clone" to an object that is like the one you want to create

        In the third case you might find out that you can get by with a set of "prototype" objects to copy from and you don't need classes at all. But to actually eliminate classes you will have to find solutions to the other things they do for you like hold the behaviors for the objects (you can put them in the objects themselves, for example) and reflection (Self uses special "mirror objects" for that).

        There are several different styles of prototype based languages [dekorte.com].
        [ Parent ]
        • Re:prototype based languages (Score:4, Interesting)

          by Piquan (49943) on Saturday March 27 2004, @04:40PM (#8691002)

          Being a Lisp programmer, I'm always looking for new ideas to bring into my Lisp programs. It looks like Lisp-- possibly even CLOS-- could support prototype-based programming without extensive pain.

          One thing that I'm wondering about in prototype-based OOP is redefining stuff. In Smalltalk and CLOS (I don't know Self), you can redefine methods over classes on the fly, or change member variable definitions, or whatever. I take advantage of this to have a production server running for months while I make improvements.

          But in a prototype language, this looks, well, difficult. If your methods are associated with prototype objects, then if you have existing non-prototype objects and change a method, then would the non-prototype objects get the method def passed down, or what?

          It seems like a prototype language would also have problems with multiple inheritance and multiple dispatch, but it looks like they've licked those too. Interesting.

          [ Parent ]
      • Re:Deja vu by ZenFu (Score:1) Saturday March 27 2004, @02:18PM
      • Re:Deja vu (Score:4, Informative)


        What's a "prototype-based object-oriented" language and how does it differ from C++ and Java?


        In Java and C++ you have classes. In a prototyped language usually not, there you only have objects.

        To make it simple, lets look at the java.util.Hashtable.

        Suppose if you write this:

        class MyClass {} the compiler would do this:
        Object MyClass = new HashTable();

        So, instead of defining a class, you just created an empty object ... I used a Hashtable, because that makes the later explanations more easy, it could have been simply an object of course.

        So far your class has no properties ... no data and no methods.

        So you likely would write something like this:
        class MyClass {
        Object start;
        Obejct end;
        }

        As prototyped languages are usually typeless you would only need to write this:
        class MyClass {
        start;
        end;
        }

        Our hypotetical compiler makes this from your typed code:
        Object MyClass = new Hashtable(); // define a "new class"
        MyClass.add("start", null);
        MyClass.add("end", null);

        So, instead of "defining" a class, like you did in Java or C++, you only created an object in the most global namespace. That object is called "MyClass" just as your class would have been called.

        That object has two "slots" with the names "start" and "stop", just like a class would have two attributes of type Object.

        So: the concept is called prototyping, because you would usually initialize the MyClass object more properly, so that "start" and "end" would have a value and would not be empty.

        Now comes the interesting point: we know how to make classes now. How to make objects from them?

        Well, all Objects have a method called "new".

        In java you would write new MyClass(). But you could of course asume a class had a static method called NEW().

        So MyClass.NEW() would create a new object of type MyClass. That method is usualy build into the language and every "class" has it. So, what does NEW() do? It "clones" the object MyClass.

        In Java we have a class MyClass, and with new we create objects. The objects have some kind of poitner to their class.

        In a prototyped language you only have objects. If you say new to them, they simply create a clone from themselves. The original object is called "prototype" or "traits". Instead of calling a constructor to initialize such a new created object it is fully initialized with default values during teh cloning.

        Why did I use a Hashtable as example? Well, you simply can tell a Hashtable to clone itself ... if the Hashtable describes a prototype. The slots in a Hashtable are similar to teh slots in an object of an prototyped language. Suich a slot usualy has a name and can hold any object ... methods are objects as well :D

        You can merge objects ... and so you do not only get a new object but also a new "class". Thats one way how inheritance could be implemented. But usualy you use nested Hashtables for inheritance, as yoou most often want single inheritance only .. and merging is used for mixins .... another term wixh would need an explanaition as long as this one.

        Regards,
        angel'o'sphere
        [ Parent ]
        • Re:Deja vu by RevAaron (Score:2) Tuesday March 30 2004, @12:34AM
          • 1 reply beneath your current threshold.
    • Re:Deja vu by Imperator (Score:2) Saturday March 27 2004, @01:28PM
      • Re:Deja vu by RevAaron (Score:2) Tuesday March 30 2004, @12:40AM
    • by alienmole (15522) on Saturday March 27 2004, @05:33PM (#8691353)
      There does seem to be a fair amount of interest in prototype-based languages lately. Javascript's object system is also prototype-based, also inspired in part by Self, as well as Lisp/Scheme. Javascript may have helped trigger the current wave of interest in this subject.

      Purely prototype-based languages don't really compete with their more structured (class-based) cousins, though. One of the main benefits of prototype-based langauges is that they give a lightweight way to create an abstraction - you don't necessarily have to create a class first. This isn't necessarily a pure win. The structure provided by classes can be useful, too. A good language should provide both capabilities, no matter what mechanisms it uses to do that. It's possible Slate does this, I haven't looked.

      Another good candidate mechanism for lightweight abstraction is first class anonymous functions, i.e. lambda, as found in Scheme, Lisp, Javascript, Perl (Python got it wrong, unfortunately). Having real lambdas tends to eliminate a lot of the problems which other languages find themselves trying to solve. Although it helps to also have macros, which limits the list to Scheme and Lisp.

      [ Parent ]
  • April fools..I hope (Score:4, Interesting)

    by rufusdufus (450462) on Saturday March 27 2004, @01:15PM (#8689781)
    Confusing things like:

    3 + 4 * 5 " ==> 35 (not 23) "

    and

    (3 / 4) == ( 3 / 4) "==> false"

    give pause for concern.

    But the example code snippet for the curious @ dispatch operator uncommented and unexplained takes the cake:

    "
    oc@(OrderedCollection traits) copyFrom: start to: end
    [| newOC |
    end start ifTrue: [^ oc newEmpty].
    newOC: (oc traits newSize: end + 1 - start).
    start to: end do: [| :index | newOC addLast: (oc at: index)].
    newOC
    ].
    "

    How could someone argue with a straight face that this gobblygook is progress in programming languages?
  • another one (Score:1, Funny)

    by Anonymous Coward on Saturday March 27 2004, @01:22PM (#8689810)

    looks like "prototype-based, object-oriented" [google.com] are the new buzzwords in programming languages

    it still needs more nanotubes to leverage your ROI while creating on-demand multi-tier dynamic buisness systems creating synergy between individual nodes of your process factoring considerations

  • PLEASE DISREGARD. (Score:1, Informative)

    by Anonymous Coward on Saturday March 27 2004, @01:28PM (#8689850)
    I am one of the primary authors of Slate and I *DID NOT* authorize anyone to do such advertising as this (and I believe the post is severely misleading on other levels), as we are CLEARLY not ready for any sort of exposure of this level. Unless you are really specifically interested in an essentially unuseable language, move along and ignore this. Again, move along and ignore.
    • 1 reply beneath your current threshold.
  • Wait a minute....... (Score:5, Funny)

    by MasterSLATE (638125) on Saturday March 27 2004, @01:29PM (#8689862)
    (http://www.masterslate.org/ | Last Journal: Monday February 16 2004, @05:50AM)
    Thats MY nick..... So, they're saying I'm a smalltalker with a lisp?

    Shhhtop it! :(
  • ain't nothin' wrong with prototype OO (Score:4, Interesting)

    by Laxitive (10360) on Saturday March 27 2004, @01:53PM (#8690019)
    (Last Journal: Saturday May 22 2004, @12:57PM)
    Man, and here I am writing my own little VM for a prototype OO system.. seems to be all the rage nowadays :D. I'm liking the recent trends of languages evolving to use simpler and simpler higher level semantics. I am a fan of smalltalk and self, but not their syntax. Their language environment and semantics, though, are worth pursuing.

    One of the reasons I like prototype OO (specifically, delegation-based prototype OO, as opposed to languages that use embedding), is that a lot of _other_ dynamic language models fit well on top of it. For example, it would be very simple to make a Python -> Self compiler, because constructs that self exposes can be used directly to implement more specific class-oriented pythonic constructs. It leads me to beleive that a prototype-oo oriented base-vm can serve as a good abstract platform environment for several dynamic 'scripting' languages.

    I'm not sure about the multiple dispatch though. I think multi-dispatch can be confusing.. especially in languages like these where the notion of runtime types is muddled quite a bit of the time.

    -Laxitive
  • by Anonymous Coward on Saturday March 27 2004, @02:12PM (#8690124)
    It's going to be based on COBOL, but will add the most annoying features of all of the other programming languges, and will leak memory like a firehose through a collander.
    • 1 reply beneath your current threshold.
  • NewtonScript? (Score:4, Informative)

    by Archibald Buttle (536586) <steve_sims7@yahoo . c o.uk> on Saturday March 27 2004, @03:20PM (#8690489)
    Yet another language turns up that claims its virtual parents are SmallTalk, Lisp, and Self...

    It would seem that Apple may have had it right ten years ago when they made NewtonScript, the native language of their Newton computers, since that language too claimed SmalllTalk, Lisp and Self as its antecedents.

    Having had a brief look though at the documentation for Slate, and yesterdays Prothon, I can't help but feel that Apple did a much better job with NewtonScript and the Newton environment. NewtonScript seems to me to be much more mature and better thought out than these two examples.

    As for comments that I read here about prototype-based languages not being suitable for application development and are effectively only the domain of accademics, I say bullshit. Class-based programming really isn't the only method of OO development, and prototypes can be equally effective. Many thousands of applications were written for the Newton, and they all used NewtonScript and its prototype-based object model. Prototypes can usually be used in a very similar way to classes, and most class-like behaviour can easily be simulated.

    If you're interested in finding out more about how NewtonScript worked and functioned there reference manual can be found here:
    http://www.unna.org/unna/development/docume ntation /NewtonScriptProgramLanguage.pdf
    For a discussion of prototype vs. class based programming consult Appendix C of the NewtonScript reference manual.
  • A better smalltalk-like language (Score:5, Interesting)

    by cryptoluddite (658517) on Saturday March 27 2004, @03:25PM (#8690514)
    There are other Smalltalk-based languages that are far better than this, for example SmallScript [smallscript.org]. The guy behind it, David Simmons, is trying to learn from Smalltalk's mistakes:
    • Isolated, all-in-one environment creates a with-us or against-us situation. Smallscript can plug into .NET, and you can embed C++ or other language code directly into the program and link to external code.
    • Slow performance. Smallscript is targeted more at scripting, where performance is less critical. Even the best Smalltalks average about 1/10th the speed of C on common codes. All Smalltalks are significantly slower than Java.
    • Complete lack of security. Smalltalks allow dynamically loading and running code (there are even smalltalk-lets like applets), but have no provisions for Java-like sandbox security. Smallscript has some provisions for security and can leverage .NET's security.
    • Unnatural language syntax for programming. Smalltalkers claim their language is more like English, but most programmers just don't like it. Smallscript has added a few C-like keywords and syntax.
    • Lack of solid, stable core. One of Java's strengths is a huge core library that is unmodifiable by applications. This means that everybody knows what the core does and what is available in it. Smalltalk core is flexibly, where developers add methods to objects on a whim and re-writing the actual code for the core objects. This means that apps are not portable to future language runtime versions and can't co-exist with other applications.

    This new Slate language looks just like Smalltalk only with new features that nobody actually wants, such as prototypes instead of classes. AFAICT, it hasn't improved on any of the above problems and has actually made some of them worse. IOW, it's doomed.

    Scallscript is a start. It's definitely the best of the breed. Personally, I think the greatest barrier to acceptance of Slate / Smalltalk / Smallscript / Squeak / Whatever is the language syntax. Programmers just don't yoda talking like, and a slightly-off Germanic style of grammar just doesn't fit well with an activity like programming that is more mathematical and logical than like communication.

  • UI (Score:2)

    by Piquan (49943) on Saturday March 27 2004, @04:42PM (#8691016)
    The article says they're merging Morphic and CLIM... two of the coolest UIs I've ever used. If they pull that off, the UI at least will have definate win potential.
    • 1 reply beneath your current threshold.
  • by water451 (200460) on Saturday March 27 2004, @06:30PM (#8691666)
    (http://briantrice.com/)

    This took me by surprise, and I'm not a usual poster here, so I don't have the energy to reply to each person in turn. So I'll summarize some points I've seen:

    This post is entirely misleading; we are not researchers, and we do intend to do business based on this language. However, what the language itself is is entirely mis-represented. Note: the original submitter is not affiliated with our project in any way, and in fact does not actually know or use the language.

    First, we are not in a project mode of self-promotion or public representation at all. Nothing on that site claims to be a real tutorial, and the current efforts have mostly been about experimentation. We are still preparing the really usable implementation, and have a huge set of ideas and environment enhancements in backlog waiting for this. What's mentioned on the front page is actually a mere fraction of what we're working on.

    The project name, "Slate", is short for "Clean Slate Smalltalk". If you don't know Smalltalk, very little of it will make sense; what's at issue is that we mean what Alan Kay would say in that Smalltalk currently means Smalltalk-80, just a certain quirky snapshot of a whole range of ideas that he and others were working on. We're interested in that whole range.

    Slate is only about prototypes insofar as this was an initial language stage that was simple to play with and powerful enough to explore without too many limitations. Further revisions of the language will feature higher-level facilities for more type-safe programming and more declarative consistency (declarative in the sense of (re-)defining a class and having its instances track that consistently).

    Slate's environment is about 0.001% of completion of what we intend, and we have a huge body of experience and code and ideas to draw upon which are already largely mapped-out. What you see on the site is not representative of what we want in those terms.

    The syntax is definitely odd. At issue is the fact that we kept a minimal Smalltalk syntax core and optimized it for "phrase value" and added various annotation mechanisms, which wind up being very hard to understand until you crack open the 40-page programmers' manual which explains this all. Although it is no tutorial, everything is explained there, and improved with feedback from early users.

    Slate is eventually going to be a full environment, and be very flexible at a large scale, so that questions of prejudice about design choices will not matter, because we actively take part in designing the system so that users can make the choices: whether image-style live interaction or C-embeddable, highly-optimized, low-overhead, no-IDE deployment. And make it so you can make these choices independently; current Smalltalks, Lisps, Dylan, and hundreds of other languages (especially the more common ones) don't have this.

    There are a number of issues brought up here which are addressed but not advertised on the front page; for example, Slate will handle security at the language level, using capability analysis and the subjective programming feature mentioned. Our project has no marketting team (see Smallscript), and has actively avoided public claims until we have the demonstration at-hand. I am giving a presentation and demonstration of the next major release, featuring a self-hosting (C-friendly) setup in Seattle at Smalltalk Solutions 2004 [smalltalksolutions.com] in May.

  • BCPL (Score:1, Troll)

    by rice_burners_suck (243660) on Saturday March 27 2004, @07:48PM (#8692158)
    (Last Journal: Sunday November 04, @03:38AM)
    I just came up with the most extraordinary idea. Why not make up a programming language where { and } are used to denote the beginning and end of a block, respectively, and expressions are terminated with a semicolon. That would be a HUGE improvement over the current languages of today, which look a lot like:
    LD1 I
    LDA BASE(0:2)
    STA *+1(0:2)
    You get the picture... (The year is 1967 right now, isn't it?)
  • by jeti (105266) on Saturday March 27 2004, @08:21PM (#8692330)
    (http://www.radialthinking.de/)
    JavaScript

    You read right. JavaScript has a prototype based system for objects. I seldom see this mentioned in language design discussions.
    Actually I like JavaScript and it's prototype system quite a lot. It's a nice and powerful little language.
    But that's likely only the case because I never needed to implement any cross-browser stuff in it.
  • Slate? (Score:2)

    by lowmagnet (646428) <eli.sarver@NosPAm.gmail.com> on Saturday March 27 2004, @09:40PM (#8692827)
    (http://lowmag.net/)
    A language in which one programs entirely in paradigm shifts, and "sea_change" is a reserved word. Any reference to descendant classes are referred to as frere; their parent classes as pere. I would go on, but Slate isn't as much fun as the other new programming language, Salon.
  • Headline we'll soon see (Score:1, Funny)

    by Anonymous Coward on Saturday March 27 2004, @10:39PM (#8693240)
    "Number Of Programming Languages Exceeds Number Of Programmers"
  • by Ignominious Cow Herd (540061) on Sunday March 28 2004, @12:00AM (#8693687)
    (Last Journal: Friday February 13 2004, @07:46PM)
    I wonder what Real computer scientists have been working on.
  • by crucini (98210) on Sunday March 28 2004, @03:13AM (#8694436)
    Do we need yet another impractical language? Look, Perl started off solving problems in the real world and was then developed into a "real" language. These pie-in-the-sky types all have the same problem, and Larry Wall nailed it. They're inventing a language around some theoretical idea, rather than looking at what works in the real world and gently enhancing it.

    Even if the main idea is a great one, the language always sucks because it is too much enslaved to that one idea.

    And the funniest part is that the language of the week is always on a web site served up by C/C++ and (Linux|Windows).
  • GNU Smalltalk (Score:3, Informative)

    by hak1du (761835) on Sunday March 28 2004, @05:59AM (#8694857)
    (Last Journal: Monday April 12 2004, @04:18AM)
    If you are looking for a Smalltalk-like language for scripting applications without the Smalltalk GUI, check out GNU Smalltalk [gnu.org]. It's a pretty faithful implementation of Smalltalk, and it even has a JIT.
  • 15 replies beneath your current threshold.