14 lines
252 B
Ruby
Executable file
14 lines
252 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require_relative '../../lib/teeworlds_client'
|
|
|
|
client = TeeworldsClient.new(verbose: false)
|
|
|
|
client.connect('localhost', 8377, detach: true)
|
|
|
|
sleep 1
|
|
client.send_chat('hello world')
|
|
|
|
client.disconnect
|