RosettaCodeData/Task/Hostname/M2000-Interpreter/hostname.m2000

11 lines
242 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Module Host {
\\ one way
Print computer$
\\ second way
Declare objNetwork "WScript.Network"
With objNetwork, "ComputerName" as cName$
Print cName$, cName$=Computer$
Declare objNetwork Nothing
}
Host