DIR_SEPARATOR
Description:
[
CCode ( cname =
"G_DIR_SEPARATOR" ) ]
public const char DIR_SEPARATOR
Example: Get the directory separator:
public static int main (string[] args) {
// Output: ``/``
print ("%c\n", Path.DIR_SEPARATOR);
return 0;
}
valac --pkg glib-2.0 GLib.Path.DIR_SEPARATOR.vala