Mein(un)sin

my (non) sense

Hello world, again

This is about the 4th blog I'm starting.

This time it should be around for longer, because octopress is nicer than wordpress - from a programmers standpoint :) . Also since it's hosted on github - I should not loss it.

"The significant problems we face cannot be solved at the same level of thinking we were at when we created them."
  • Albert Einstein (1879-1955)
(defn hello [name]
  (println "hello, " name))

(hello "world")
def hello(name):
  print "hello, ", name

hello("world")
def hello(name)
  puts "hello, #{name}"
end

hello "world"