hare

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

arch.ha (255B)


      1 // SPDX-License-Identifier: GPL-3.0-only
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 use hare::module;
      5 use os;
      6 use strings;
      7 
      8 fn set_arch_tags(tags: *[]str, a: str) void = {
      9 	merge_tags(tags, "-aarch64-riscv64-x86_64")!;
     10 	append(tags, strings::dup(a));
     11 };