Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Submission + - TechBeacon Article is Making a Breakthrough in Smalltalk Advocacy 3

horrido writes: This TechBeacon article is poised to break through the 20,000 views barrier in a matter of weeks. It has done more for Smalltalk advocacy than any other article in memory. TechBeacon says it's the second most popular app dev article of 2016. And Smalltalk evangelist, Richard Eng (aka "Mr. Smalltalk"), has been making a great deal of hay out of it on Twitter (#MakeSmalltalkGreatAgain). Can we expect great things from Smalltalk in 2017?

Comment Re:Can't wait (Score 1) 438

pike can do something like that:
Pike v7.6 release 7 running Hilfe v3.5 (Incremental Pike Frontend)
> array a=({ 1, 2, 3 });
> array b=({ 4, 5, 6 });
> array c;
> c=a[*]+(2*b[*])[*];
(1) Result: ({ /* 3 elements */
9,
12,
15
})
the automap operator [*] maps each element of the vector into the equation one by one. i have seen one other language that has such a feature, but i don't remember what it was.

greetings, eMBee.

Slashdot Top Deals

Due to lack of disk space, this fortune database has been discontinued.

Working...