typealias MyType = String

fun main(args: Array<String>) {
		val test: MyType = "Test";
    println(test) //Test
}