examples
</> Example Implementation
Concurrent process channels
Demonstrates F1R3FLY's Rholang-based concurrent process model with channel communication.
; F1R3FLY concurrent execution model
; Based on rho-calculus
new channel in {
channel!(42) |
for (value <- channel) {
stdout!(*value)
}
}
; Processes communicate via named channels