6 lines
127 B
Text
6 lines
127 B
Text
/* hostname.wren */
|
|
class Host {
|
|
foreign static name() // the code for this is provided by Go
|
|
}
|
|
|
|
System.print(Host.name())
|