Examples: AT4 and IronPython

It is time for me to conquer the realm of using IronPython with Automise 3/4. I don't see any documentation or examples. Where should I start?

TIP: Don't start off by "properly" indenting.

I saw...

def OnExecute(Action, ActionResult):

So, naturally I added

def OnExecute(Action, ActionResult):    print "Hello World"

But that didn't work. So, next was...

def OnExecute(Action, ActionResult):    pass

But that didn't work. So, next was...

def OnExecute(Action, ActionResult):pass

And that worked! So did...

def OnExecute(Action, ActionResult):print "Hello World"

So the lesson learned, is to "ignore" the function definition and begin at column zero.