code wiki / _hdl_build / _inet_naive_probe.nx
_inet_naive_probe.nx source
↩ module page · 7 lines · 518 B
1// _inet_naive_probe.nx -- the BUILDER's NAIVE first attempt at a sovereign inet fetch: compose the convenient
2// resolver wrapper nx_dns_io_resolve_a with nx_browse_text. This is what the team reaches for first. It is
3// EXPECTED TO FAIL the build (nx_dns_io is x86_64-pinned: imports nx_syscalls_x86_64 + nx_udp; nx_browse_text
4// imports nx_syscalls -> duplicate syscall symbols). Capturing that failure IS the team raising its hand.
5import "nx_dns_io.nx"
6import "nx_browse_text.nx"
7func main() -> i64 { return 0 }