Created
February 17, 2026 01:05
-
-
Save clementi/be8200cc37b2ca8adee11f3ae00bd210 to your computer and use it in GitHub Desktop.
List the contents of the PATH environment variable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USING: io kernel sequences system splitting environment ; | |
| IN: lspath | |
| : path-list-separator ( -- str ) | |
| os windows? ";" ":" ? ; | |
| : lspath ( -- ) "PATH" os-env path-list-separator split [ print ] each ; | |
| MAIN: lspath |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment