udp server example

This commit is contained in:
2026-03-12 17:50:01 +01:00
parent f2a7179b03
commit 100b752eee
5 changed files with 160 additions and 134 deletions

View File

@@ -70,6 +70,7 @@ fn compile_file(args: Args) -> Result<(), ZernError> {
include_str!("std/syscalls.zr").into(),
)?;
compile_file_to(&mut codegen, "std.zr", include_str!("std/std.zr").into())?;
compile_file_to(&mut codegen, "net.zr", include_str!("std/net.zr").into())?;
compile_file_to(&mut codegen, filename, source)?;
if !args.output_asm {