About Social Code
summaryrefslogtreecommitdiff
path: root/thread/thread.rkt
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-23 00:17:59 +0000
committerLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-23 00:17:59 +0000
commita2feba2d918db861ea85d22887f73993c173e742 (patch)
tree7027dc2ded85a2ef0f8982e75099434f68c4a0d8 /thread/thread.rkt
parentbca429dd94dafc49cf9134040dfdfb6baf0de10c (diff)
Reorganize source, create basic threading and server
Need to create main world loop and have it message with web server
Diffstat (limited to 'thread/thread.rkt')
-rw-r--r--thread/thread.rkt10
1 files changed, 10 insertions, 0 deletions
diff --git a/thread/thread.rkt b/thread/thread.rkt
new file mode 100644
index 0000000..bf7d8eb
--- /dev/null
+++ b/thread/thread.rkt
@@ -0,0 +1,10 @@
+#lang racket
+
+(provide thread
+ thread-send
+ thread-receive
+ thread-receive-evt
+ thread-wait
+ sleep
+ sync/timeout
+ current-thread)