Joshua Caito
Member since Jan 28, 2011
- Profile: /members/7689-joshua-caito.htm
- Comments: 4
Recent Blog Comments By Joshua Caito
-
Seven Languages In Seven Weeks By Bruce Tate - What An Adventure
Posted on Jan 28, 2011 at 4:35 PM
@Ben I'd imagine. That's why I like CF. Simple, straightforward, and lots of functionality.... read more »
-
Seven Languages In Seven Weeks By Bruce Tate - What An Adventure
Posted on Jan 28, 2011 at 4:24 PM
@Ben From what I can gather it was originally intended for network communications and distributed computing. I figured in the spirit of things I'd try a language I had never tried before. I even found an online compiler. Syntax is pretty straight forward and it does some decent list evaluation. Alt... read more »
-
Seven Languages In Seven Weeks By Bruce Tate - What An Adventure
Posted on Jan 28, 2011 at 2:15 PM
I thought I'd try a language I'd never heard of to see how difficult it would be. I may actually pick this up now based on how easy it was. (I'm just rehasing my Lisp prog here) The language is REBOL names: ["Josh" "Ben" "Ray"] newList: [] addAdjective: func ... read more »
-
Seven Languages In Seven Weeks By Bruce Tate - What An Adventure
Posted on Jan 28, 2011 at 12:51 PM
(defparameter *names* (list "Josh" "Ben" "Ray")) (defun addAdjective (namesList adjective) (loop for i in namesList append (list (concatenate 'string i " is so " adjective)) into newList finally (return (values newList)))) (addAdjective *names* &qu... read more »