Environment variables: Difference between revisions

Added AppleScript implementation to get home
(Extended C implementation)
(Added AppleScript implementation to get home)
Line 65:
{{works with|ALGOL 68G|Any - tested with release mk15-0.8b.fc9.i386 - ''getenv'' is not part of the standard's prelude}}
<lang algol68>print((getenv("HOME"), new line))</lang>
 
=={{header|AppleScript}}==
<lang AppleScript>
tell application "Finder" to get name of home
</lang AppleScript>
 
=={{header|Arturo}}==
503

edits