mirror of
				https://github.com/janet-lang/janet
				synced 2025-10-31 07:33:01 +00:00 
			
		
		
		
	 d6391f2d70
			
		
	
	d6391f2d70
	
	
	
		
			
			This also changes the api of servers slightly - in light of having support for ev tasks, it is probably better to remove the "simple" server code and replace it with some Janet or remove it all together. While convenient, it has issues with error handling and rigidity.
		
			
				
	
	
		
			6 lines
		
	
	
		
			164 B
		
	
	
	
		
			Clojure
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			164 B
		
	
	
	
		
			Clojure
		
	
	
	
	
	
| (with [conn (net/connect "127.0.0.1" 8000)]
 | |
|   (print "writing abcdefg...")
 | |
|   (:write conn "abcdefg")
 | |
|   (print "reading...")
 | |
|   (printf "got: %v" (:read conn 1024)))
 |