Execute a system command: Difference between revisions

Content deleted Content added
Mmphosis (talk | contribs)
Applesoft BASIC
Line 98:
=={{header|AppleScript}}==
<lang applescript>do shell script "ls" without altering line endings</lang>
=={{header|Applesoft BASIC}}==
 
<lang ApplesoftBASIC>? CHR$(4)"CATALOG"</lang>
=={{header|AutoHotkey}}==
<lang autohotkey>Run, %comspec% /k dir & pause</lang>