RosettaCodeData/Task/Environment-variables/PureBasic/environment-variables-2.purebasic

9 lines
253 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
If OpenConsole()
PrintN("Path:"+#CRLF$ + GetEnvironmentVariable("PATH"))
PrintN(#CRLF$+#CRLF$+"NUMBER_OF_PROCESSORS= "+ GetEnvironmentVariable("NUMBER_OF_PROCESSORS"))
PrintN(#CRLF$+#CRLF$+"Press Enter to quit.")
Input()
CloseConsole()
EndIf