method dir-sep
Documentation for method dir-sep
assembled from the following types:
class IO::Spec::Unix
From IO::Spec::Unix
(IO::Spec::Unix) method dir-sep
Defined as:
method dir-sep(--> Str)
Returns the string "/"
representing canonical directory separator character.
IO::Spec::Unix.dir-sep.say; # OUTPUT: «/»
class IO::Spec::Win32
From IO::Spec::Win32
(IO::Spec::Win32) method dir-sep
Defined as:
method dir-sep(--> Str)
Returns the string 「\」
representing canonical directory separator character.
IO::Spec::Win32.dir-sep.say; # OUTPUT: «\»