Networking.

This commit is contained in:
2026-01-24 09:57:59 +01:00
parent 1855363661
commit 1a08b3adf0
25 changed files with 1371 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
System.print("Start")
Fiber.new {
System.print("In new fiber, suspending")
Fiber.suspend()
System.print("New fiber resumed")
}.call()
System.print("Back in main fiber")
Fiber.suspend()
System.print("Main fiber resumed")