⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 net.l

📁 A very small LISP implementation with several packages and demo programs.
💻 L
字号:
# 26sep07abu# (c) Software Lab. Alexander Burger### port listen connect ###(test '(a b c)   (if (fork)      (let P (port 4444)         (prog1            (in (listen P) (rd))            (close P) ) )      (wait 400)      (and (connect "localhost" 4444) (out @ (pr '(a b c))))      (bye) ) )### udp ###(test '(a b c)   (ifn (fork)      (prog         (wait 400)         (udp "localhost" 4444 '(a b c))         (bye) )      (udp (port T 4444)) ) )# vi:et:ts=3:sw=3

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -