feat(zmq): Simplified bindings.

This commit is contained in:
2026-07-08 12:37:26 -04:00
parent 7e261b2a5d
commit ad43577b44
4 changed files with 66 additions and 45 deletions
+13
View File
@@ -0,0 +1,13 @@
#+test
package zmq
import "core:testing"
@(test)
test_error_type :: proc(t: ^testing.T) {
e: Error = .EFSM
testing.expect_value(t, size_of(e), 8)
}