Skip to content

Instantly share code, notes, and snippets.

@domgetter
Created January 14, 2016 17:30
Show Gist options
  • Save domgetter/f49b57024f840e98754a to your computer and use it in GitHub Desktop.
Save domgetter/f49b57024f840e98754a to your computer and use it in GitHub Desktop.
;; Client
(import 'java.net.Socket)
(def output (.getOutputStream (Socket. "localhost" 3000)))
(.write output 3)
;; Server
(import 'java.net.ServerSocket)
(def input (.getInputStream (.accept (ServerSocket. 3000))))
(.read input)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment