An AppleScript list iterate/loop example
An AppleScript list iterate/loop example alvin October 28, 2010 - 4:24pm Read more about An AppleScript list iterate/loop exampleLog in to post comments AppleScript list FAQ: How do I iterate/loop over...
View ArticleThe AppleScript for loop (and while loop) examples
The AppleScript for loop (and while loop) examples alvin October 28, 2010 - 4:35pm Read more about The AppleScript for loop (and while loop) examplesLog in to post comments AppleScript for loop FAQ:...
View ArticleScala control structure examples (if/then, match/case, for, while, try/catch)
Scala control structure examples (if/then, match/case, for, while, try/catch) alvin September 28, 2014 - 6:43pm Read more about Scala control structure examples (if/then, match/case, for, while,...
View ArticleScala: How to use break and continue in for and while loops
Scala: How to use break and continue in for and while loops alvin June 7, 2015 - 3:22pm Read more about Scala: How to use break and continue in for and while loopsLog in to post comments This is an...
View ArticleHow to create your own control structures in Scala
How to create your own control structures in Scala alvin June 7, 2015 - 4:06pm Read more about How to create your own control structures in ScalaLog in to post comments This is an excerpt from the...
View ArticleJava BufferedReader, readLine, and a Scala while loop
Java BufferedReader, readLine, and a Scala while loop alvin September 14, 2016 - 8:52pm Read more about Java BufferedReader, readLine, and a Scala while loopLog in to post comments I generally try to...
View ArticleHow to process every line in a file with a Unix/Linux shell script
How to process every line in a file with a Unix/Linux shell script alvin October 15, 2017 - 9:41pm Read more about How to process every line in a file with a Unix/Linux shell script2 commentsLog in to...
View ArticleAn example of using ‘break’ in a Scala for loop
An example of using ‘break’ in a Scala for loop alvin February 1, 2018 - 9:37am Read more about An example of using ‘break’ in a Scala for loopLog in to post comments Here’s a little example of how to...
View ArticleScala while and do/while loops (syntax, examples)
Scala while and do/while loops (syntax, examples) By Alvin Alexander. Last updated: July 15 2019 Once I got into functional programming I generally quit using while loops and do/while loops in Scala,...
View ArticleA Scala DSL example
A Scala DSL example alvin April 24, 2019 - 2:03pm Read more about A Scala DSL exampleLog in to post comments I was just going through some old notes and found this Scala DSL example from 2010:
View Article