Skip to content

Instantly share code, notes, and snippets.

@clementi
Created February 17, 2026 01:05
Show Gist options
  • Select an option

  • Save clementi/be8200cc37b2ca8adee11f3ae00bd210 to your computer and use it in GitHub Desktop.

Select an option

Save clementi/be8200cc37b2ca8adee11f3ae00bd210 to your computer and use it in GitHub Desktop.
List the contents of the PATH environment variable
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