hare

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

commit 83bbdaa6c1159612a8a2e340dd1898eab0ddabc1
parent b3575db38c69b977f74fedb95acf9ef4292c6e98
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat,  6 Mar 2021 12:15:44 -0500

Print hostname during build

Diffstat:
Mmain.ha | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/main.ha b/main.ha @@ -12,6 +12,8 @@ export fn main() void = { fmt::fatal("Usage: {} <path>", os::args[0]); }; + fmt::printfln("Building for {}", os::machine()); + let ctx = module::context_init([]); let ver = match (module::scan(&ctx, os::args[1])) { ver: module::version => ver,