Re-introduction of low level languages?
I've been flipping through various low-level languages as of late (egad—you caught me!), like assembly (minor interest), c, etc. But the language that caught my eye was Forth.
I love the simplicity of it; it seems to echo the way I think, and the simplicity of it (only a few commands) allows you to write pretty nifty programs.
For example, the first thirty fibonacci numbers:
I love the simplicity of it; it seems to echo the way I think, and the simplicity of it (only a few commands) allows you to write pretty nifty programs.
For example, the first thirty fibonacci numbers:
Code:
: FIB DUP 2 < IF DROP 1 ELSE DUP 1 - RECURSE SWAP 2 - RECURSE + THEN ;
: FIB-LOOP 0 DO I FIB . LOOP ;
30 FIB-LOOP
It's not magic, it's Ruby.
And of course, http://desudesudesu.net/#FORTH__gforth_
Forth isn't my idea of a low-level language though, given that it's reflective and not statically typed... "simple" != "low-level". Pascal, C, C++, etc. are low-level.
Forth isn't my idea of a low-level language though, given that it's reflective and not statically typed... "simple" != "low-level". Pascal, C, C++, etc. are low-level.
Well, it is low level even if it doesn't use all the features one can get in Pascal/c*. But, if one really wants to, one can use assembly (I think, I just started forth a few days ago).
It's not magic, it's Ruby.
Forth is low level and C is high level

Sir, e^iπ + 1 = 0, hence God exists; reply!
Clearly you two and I are unable to have a meaningful conversation about this until you adjust your definition of "low-level" to meet the norm

Possibly Related Threads...
Thread: | Author | Replies: | Views: | Last Post | |
High and Low Level Languages | FlamingHairball | 22 | 17,896 |
Jan 8, 2008 10:23 PM Last Post: PowerMacX |
|
What languages do you need for a MMORPG? | Lost22 | 12 | 9,975 |
Nov 20, 2007 01:07 AM Last Post: Lost22 |
|
Pros and Cons of Different Languages | Blacktiger | 40 | 26,563 |
Aug 2, 2007 09:36 PM Last Post: richard |
|
Some questions on languages from a new guy (...beginners) | ProfessorApe | 20 | 13,146 |
Jan 24, 2007 03:10 PM Last Post: leRiCl |
|
Embedding Scripting Languages Tutorials | Nick | 18 | 11,493 |
Apr 13, 2006 09:53 PM Last Post: kelvin |