Anders and Briegel in Python
				
			 
			
		 
		
		
		
		
		
		
			25'ten fazla konu seçemezsiniz
			Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- var ws;
 - 
 - function connect_to_server() {
 -     ws = new WebSocket("ws://localhost:5001");
 -     ws.onopen = function()
 -     {
 -        console.log("Connected to server.");
 -     };
 -      
 -     ws.onmessage = function (evt) 
 -     { 
 -        var received_msg = evt.data;
 -        console.log("Message received: " + evt.data);
 -     };
 -      
 -     ws.onclose = function()
 -     { 
 -        console.log("Connection was closed.");
 -     };
 - }
 - 
 
 
  |