diff --git a/racket/syndicate/examples/actor/add1-simple.rkt b/racket/syndicate/examples/actor/add1-simple.rkt new file mode 100644 index 0000000..3075ba7 --- /dev/null +++ b/racket/syndicate/examples/actor/add1-simple.rkt @@ -0,0 +1,13 @@ +#lang syndicate +;; Trivial example program to demonstrate tracing + +(assertion-struct one-plus (n m)) + +(spawn #:name 'add1-server + (during/spawn (observe (one-plus $n _)) + #:name (list 'solving 'one-plus n) + (assert (one-plus n (+ n 1))))) + +(spawn #:name 'client-process + (stop-when (asserted (one-plus 3 $value)) + (printf "1 + 3 = ~a\n" value)))