nx_fgt_model.nx source
↩ module page · 9 lines · 239 B
1// nx_fgt_model.nx -- Outputs a confirmation message and exits the forge-m process.
2import "nx_syscalls.nx"
3import "nx_lib_std.nx"
4func main(argc: i64, argv: *i64) -> i64 {
5 std_puts("FORGE-M ok
6" as *u8)
7 sys_exit(0)
8 return 0
9}