RosettaCodeData/Task/Hostname/Wren/hostname-1.wren
2023-07-01 13:44:08 -04:00

6 lines
127 B
Text

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