hare

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

env.ha (209B)


      1 // SPDX-License-Identifier: MPL-2.0
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 export let argc: size = 0;
      5 export let argv: *[*]*u8 = null: *[*]*u8;
      6 export let envp: *[*]nullable *u8 = null: *[*]nullable *u8;