>>-parent------------------------------------------------------><
Example 5.213. Class FILE - parent method
/* On Windows */
say .File~new("c:\program files\oorexx\rexx.exe")~parent -- c:\program files\oorexx
say .File~new("c:\")~parent -- The NIL object
say .File~new("c:")~parent -- The NIL object
/* On Unix */
say .File~new("/opt/ooRexx/bin/rexx.img")~parent -- /opt/ooRexx/bin
say .File~new("/")~parent -- The NIL object