It can be done but it is really only available if you have a language that reads Right to Left. I presume you don't!
You can enable this in code though.
Read here if you don't know how to use code (It's for earlier versions so you will need to adapt.)
In 2013 ALT f11 opens the Code editor
Insert > Module
Copy and paste in the code below
Put the cursor in the code and f5 to run it
You should get a printout with lines to left.
Sub leftnotes()
With ActivePresentation
.LayoutDirection = ppDirectionRightToLeft
With .PrintOptions
.FrameSlides = True
.OutputType = ppPrintOutputThreeSlideHandouts
End With
.PrintOut
.LayoutDirection = ppDirectionLeftToRight
End With
End Sub