1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 14:22:25 +03:00

README: add PowerShell, implementation 58.

This commit is contained in:
Joel Martin 2016-08-24 17:42:19 -05:00
parent a7ed71b9e2
commit 5c34565f8d

View File

@ -6,7 +6,7 @@
Mal is a Clojure inspired Lisp interpreter.
Mal is implemented in 57 languages:
Mal is implemented in 58 languages:
* Ada
* GNU awk
@ -52,6 +52,7 @@ Mal is implemented in 57 languages:
* PL/pgSQL (Postgres)
* PL/SQL (Oracle)
* Postscript
* PowerShell
* Python
* RPython
* R
@ -610,16 +611,6 @@ cd php
php stepX_YYY.php
```
### Postscript Level 2/3
The Postscript implementation of mal requires ghostscript to run. It
has been tested with ghostscript 9.10.
```
cd ps
gs -q -dNODISPLAY -I./ stepX_YYY.ps
```
### PL/pgSQL (Postgres SQL Procedural Language)
The PL/pgSQL implementation of mal requires a running Postgres server
@ -659,6 +650,26 @@ cd plsql
ORACLE_LOGON=myuser/mypass@ORCL ./wrap.sh stepX_YYY.sql
```
### Postscript Level 2/3
The Postscript implementation of mal requires ghostscript to run. It
has been tested with ghostscript 9.10.
```
cd ps
gs -q -dNODISPLAY -I./ stepX_YYY.ps
```
### PowerShell
The PowerShell implementation of mal requires the PowerShell script
language. It has been tested with PowerShell 6.0.0 Alpha 9 on Linux.
```
cd powershell
powershell ./stepX_YYY.ps1
```
### Python (2.X or 3.X)
```