hare

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

syscallsarch+x86_64.ha (159B)


      1 // License: MPL-2.0
      2 // (c) 2022 Sebastian <sebastian@sebsite.pw>
      3 
      4 export fn alarm(seconds: uint) uint = {
      5 	return syscall1(SYS_alarm, seconds: u64): uint;
      6 };
      7