From 4cb6f5cf26c79113b5aff96f37ec1206a8f237ed Mon Sep 17 00:00:00 2001 From: Sam Caldwell Date: Wed, 23 Sep 2015 14:56:28 -0400 Subject: [PATCH] add spawn/stateless to FAQ --- FAQ.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FAQ.md b/FAQ.md index e2694a5..247ca4e 100644 --- a/FAQ.md +++ b/FAQ.md @@ -64,6 +64,9 @@ (spawn (lambda (event state) ... (transition state' (list action ...))) initial-state initial-action ...) + ;; stateless actor + (spawn/stateless (lambda (event) ... (list action ...)) + initial-action ...) ;; network of actors (spawn-world boot-action ...) ```