Write entire file: Difference between revisions

Added Powershell implementation
(added ocaml)
(Added Powershell implementation)
Line 524:
(prinl "My string") )</lang>
 
=={{header|PowerShell}}==
Writes all running process details to a file in the current directory.
<lang powershell>
Get-Process | Out-File -FilePath .\ProcessList.txt
</lang>
=={{header|PureBasic}}==
<lang PureBasic>
503

edits