The P programming language
becuz im bored
Check out examples/ for some examples.
curl -sSL https://raw.githubusercontent.com/p-programming-language/plang/main/install.sh | bash
PowerShell:
Invoke-Expression (Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/p-programming-language/plang/main/install.ps1').Content
Command Prompt:
powershell -command "& { Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/p-programming-language/plang/main/install.bat' -OutFile 'install.bat'; .\install.bat; Remove-Item -Path 'install.bat' }"
Simply run:
npm run build
or:
yarn run build
Then you can access our tools using:
npm run <tool>
or:
yarn run <tool>
+
, -
, etc.)## single line
, ##: multi line :##
)is
, is in
, etc.)++
, --
, #
, typeof
, etc.):=
and =
operators)value is T
, T extends U
, asserts T
, T extends U ? V : Q
)value as T
)Generated using TypeDoc