Add a session ID to debug_session - vim only for now

This commit is contained in:
Ben Jackson 2020-12-03 20:42:32 +00:00
commit fb2bad216f
11 changed files with 320 additions and 156 deletions

View file

@ -6,8 +6,9 @@ import os
def Main():
print( os.environ.get( 'Something', 'ERROR' ) )
print( os.environ.get( 'SomethingElse', 'ERROR' ) )
print( os.environ.get( 'PATH', 'ERROR' ) )
for k, v in os.environ:
for k, v in os.environ.items():
print( f'{ k } = "{ v }"' )