New modules.
WrenCI / linux (push) Waiting to run
WrenCI / mac (push) Waiting to run
WrenCI / windows (push) Waiting to run

This commit is contained in:
2026-01-24 19:35:43 +01:00
parent 1a08b3adf0
commit 236d69c2d7
118 changed files with 315687 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
import "dns" for Dns
var addresses = Dns.lookup("localhost")
System.print(addresses is List) // expect: true
System.print(addresses.count > 0) // expect: true
var first = addresses[0]
System.print(first == "127.0.0.1" || first == "::1") // expect: true