The Artima Developer Community
Sponsored Link

Agile Buzz Forum
Next Big Language: Sad but true files

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
James Robertson

Posts: 29924
Nickname: jarober61
Registered: Jun, 2003

David Buck, Smalltalker at large
Next Big Language: Sad but true files Posted: Feb 11, 2007 3:08 PM
Reply to this message Reply

This post originated from an RSS feed registered with Agile Buzz by James Robertson.
Original Post: Next Big Language: Sad but true files
Feed Title: Cincom Smalltalk Blog - Smalltalk with Rants
Feed URL: http://www.cincomsmalltalk.com/rssBlog/rssBlogView.xml
Feed Description: James Robertson comments on Cincom Smalltalk, the Smalltalk development community, and IT trends and issues in general.
Latest Agile Buzz Posts
Latest Agile Buzz Posts by James Robertson
Latest Posts From Cincom Smalltalk Blog - Smalltalk with Rants

Advertisement

Steve Yegge has a long post up on the topic of "the next big programming language". The title of this post comes from this assertion:

Rule #1: C-like syntax

C(++)-like syntax is the standard. Your language's popularity will fall off as a direct function of how far you deviate from it.

There's plenty of wiggle room in the way you define classes and other OOP constructs, but you'll need to stick fairly closely to the basic control-flow constructs, arithmetic expressions and operators, and the use of curly-braces for delimiting blocks and function bodies.

Probably true, regardless of how much I think that cripples a language. For instance: C style syntax pretty much guarantees that you won't have named arguments. Instead of something readable like this:

 

webServer
     startOnPort: 80
     maximumNumberOfInstances: 10
     usingHostName: 'www.somehosthere.com'.


No, instead you'll see this:

 

web_server.start (80, 10, "somehosthere.com");


Which is a sad commentary on the industry, but that's the way it is. Meanwhile, at least things are iterating in the direction of the trail Smalltalk blazed decades ago.

Technorati Tags: , , ,

Read: Next Big Language: Sad but true files

Topic: Your permanent record Previous Topic   Next Topic Topic: Fast Continuous Integration For Game Developers

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use