TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

"Move" — a simpler programming language as a subset of JavaScript

38 pointsby tonysknover 14 years ago

11 comments

tomstuartover 14 years ago
<p><pre><code> Move is a subset of JavaScript [...] The following three examples are all valid Move code while the last one is also valid JavaScript code </code></pre> You keep using that word. I do not think it means what you think it means.
评论 #2216896 未加载
评论 #2216030 未加载
Maroover 14 years ago
I don't think Javascript being too complicated is a real world problem.
评论 #2216381 未加载
olalondeover 14 years ago
Now the question is, does it meet HN's notability requirements?
andolanraover 14 years ago
<p><pre><code> Variables need not be explicitly declared. Move will declare a newfound variable in the scope which it first was used. </code></pre> How does this interact with lexical scope? For example, how would the go-to counter example (in JavaScript below) be expressed in Move?<p><pre><code> function makeCounter() { var x = 0; return function() { return x++; }; } </code></pre> Does Move not require declarations because it has implicit declarations whenever there's a usage of any variable? (In which case the above example couldn't be expressed without some kind of circumlocution—again, like in Python.) Or are variables always looked up in the outermost scope, so you can't have a variable whose name is shared by another variable in an enclosing scope?<p><pre><code> No commas required to terminate expressions. Move will determine when a comma is needed so you don't have to (and the code gets more readable). </code></pre> Given that all the code has commas in the same places as in JavaScript, I'm going to assume s/comma/semicolon, and s/expression/statement, to be pedantic.
Andiover 14 years ago
Functions return the result of the last expression -&#62; Better use CoffeeScript - it's &#62; 1.0 - it will save you even more work.
igorwover 14 years ago
&#62; In JavaScript, there are two different ways to define a function: using the function expression and the function declaration statement, the latter having subtle restrictions. Move only has function expressions.<p>Except using named functions will also make your stack traces useful. Because function names tell you more than line numbers.
Ezkuover 14 years ago
A subset? Doesn't seem so. Also doesn't seem to have anything on CoffeeScript.
jamesromover 14 years ago
Step 1) Add some shortcuts to JavaScript<p>Step 2) Make it marginally more expressive<p>Step 3) ???<p>Step 4) Profit
评论 #2216767 未加载
davidk0101over 14 years ago
This is really cool. I really like his take on lambda being ^.
评论 #2216005 未加载
Charuruover 14 years ago
What about coffeescript.
评论 #2216818 未加载
robwgibbonsover 14 years ago
JavaScript isn't simple enough already? I think libraries are the way to make syntactic sugar, not trying to replace the language itself.