Readit News logoReadit News
vbit commented on If-statements in Smalltalk (2008)   pozorvlak.livejournal.com... · Posted by u/ColinWright
wry_discontent · 9 years ago
I briefly looked into it, but I can't seem to figure out what to make with it. It looked like you couldn't write an application with any portability, and any user would basically have to run a smalltalk vm to use your application. Am I mistaken?
vbit · 9 years ago
I'm no expert (not even close), but I believe they'd have to run Pharo itself, yes. So you could redistribute the Pharo runtime along with your app code (similar to, say, Python).

You may be able to build web applications too (http://seaside.st/).

vbit commented on If-statements in Smalltalk (2008)   pozorvlak.livejournal.com... · Posted by u/ColinWright
vbit · 9 years ago
This applies to loops as well. Numbers are objects that accept the `timesRepeat:` message:

    10 timesRepeat: [ n := n*2 ].
Not only that, you can send messages to blocks, to implement loops.

    [ n < 10 ] whileTrue: [ n := n + 1 ]

vbit commented on If-statements in Smalltalk (2008)   pozorvlak.livejournal.com... · Posted by u/ColinWright
vbit · 9 years ago
Anyone interested in playing around with Smalltalk can use https://pharo.org - I recently tried it and was pretty amazed with the quality of documentation available. It is quite a different experience working in an interactive live environment.
vbit commented on Problems with Android Studio   techcrunch.com/2017/02/19... · Posted by u/antfarm
vbit · 9 years ago
There's also Kivy (http://kivy.org). Not with a sizeable sponsor like React or Xamarin, but it's Python :D
vbit commented on Dafny – A programming language with a program verifier   github.com/Microsoft/dafn... · Posted by u/btat1
vbit · 9 years ago
Would be nice to have a screenshot without the red squiggly underlines.

Dead Comment

Deleted Comment

vbit commented on Vue.js 2.1 Released   github.com/vuejs/vue/rele... · Posted by u/sadiqmmm
vbit · 9 years ago
I have some projects in Mithril - is it worth it port to Vue?

u/vbit

KarmaCake day344September 14, 2013View Original