hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

+freebsd.ha (256B)


      1 // SPDX-License-Identifier: MPL-2.0
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 // Platform-specific path separator byte.
      5 export def SEP: u8 = '/';
      6 
      7 const sepstr: str = "/";
      8 
      9 // Maximum length of a file path for this platform.
     10 export def MAX: size = 4095;