27 March 2009

Hello World!

I’ve created this blog some months ago, and I haven’t made some time to work on it. So, with this post I’m inaugurating it.

Since I’ll be posting thinks about my work on digital technologies and strategies for design and fabrication, I’m going to begin with the first script I’m used to teach: The Hello World Script.

Call HelloWorld()
Sub HelloWorld()
    Dim Name
    Name = Rhino.GetString("What's your name?")
    Call Rhino.MessageBox(Name & ", welcome to Scripting world!")
End Sub