1. Euphoria and TCL are similar

Has anyone ever notice how similar Euphoria and Tcl are? They call a sequence a list, and use "set" to do assignments plus a few other idiosyncrasies, but these two languages are closely related, IMO.

Might be an easy addition/migration, to someone's toolset. duke

new topic     » topic index » view message » categorize

2. Re: Euphoria and TCL are similar

set ?

new topic     » goto parent     » topic index » view message » categorize

3. Re: Euphoria and TCL are similar

raseu said...

set ?

As in:

set name "raseu" 

Is that what was puzzling you? duke

new topic     » goto parent     » topic index » view message » categorize

4. Re: Euphoria and TCL are similar

dukester said...
raseu said...

set ?

As in:

set name "raseu" 

Is that what was puzzling you? duke


And mirc also:

 set %var 12 
 set -u0 %var test 
 set -u10 %var here 
 set -n ... 
 set -z ... 
 set -e ... 


But so?
useless

new topic     » goto parent     » topic index » view message » categorize

5. Re: Euphoria and TCL are similar

Euphoria and Lua are similar, too.

In fact, they even share a lot of tokens and keywords and even some concepts.

Doesn't mean much, though Lua is Lua and Euphoria is Euphoria.

new topic     » goto parent     » topic index » view message » categorize

6. Re: Euphoria and TCL are similar

dukester said...

Has anyone ever notice how similar Euphoria and Tcl are? They call a sequence a list, and use "set" to do assignments plus a few other idiosyncrasies, but these two languages are closely related, IMO.

Might be an easy addition/migration, to someone's toolset.

I'm not sure what you mean. In Euphoria a sequence is a sequence, we do not talk about lists in Euphoria. Further, we don't use set. i.e.

-- TCL: 
set name "John Doe" 
 
-- Euphoria: 
sequence name = "John Doe" 
-- or once the var is declared 
name = "John Doe" 

Jeremy

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu