RosettaCodeData/Task/Environment-variables/Eiffel/environment-variables.e

14 lines
255 B
Plaintext

class
APPLICATION
inherit
EXECUTION_ENVIRONMENT
create
make
feature {NONE} -- Initialization
make
-- Retrieve and print value for environment variable `USERNAME'.
do
print (get ("USERNAME"))
end
end