hare

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

status.ha (249B)


      1 // SPDX-License-Identifier: MPL-2.0
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 // Values that may be passed to [[exit]] to indicate successful or unsuccessful
      5 // termination, respectively.
      6 export type status = enum {
      7 	SUCCESS = 0,
      8 	FAILURE = 1,
      9 };