hare

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

addr.ha (189B)


      1 // SPDX-License-Identifier: MPL-2.0
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 // A UNIX socket address.
      5 export type addr = str;
      6 
      7 // Invalid UNIX socket path.
      8 export type invalid = !void;