TextureSync/client/src/main/kotlin/org/hso/texturesyncclient/controller/net/test.kt

13 lines
200 B
Kotlin

package org.hso.texturesyncclient.controller.net
import java.net.*
fun main() {
// Just some test code.
val con = Connection(InetAddress.getByName("::1"))
con.ping()
con.close()
}