Invoke-WebRequest -Uri "https://github.com/python-processing-unit/ASM-Lang/archive/refs/heads/main.zip" -OutFile "path\to\download\ASM-Lang.zip"
Expand-Archive -Path "path\to\download\ASM-Lang.zip" -DestinationPath "path\to\extract\ASM-Lang"
$old = [Environment]::GetEnvironmentVariable('Path','User')
if(-not $old.Split(';') -contains 'path\to\extract\ASM-Lang'){ [Environment]::SetEnvironmentVariable('Path',$old + ';path\to\extract\ASM-Lang','User') }
Remove-Item -Path "path\to\download\ASM-Lang.zip"
-
Notifications
You must be signed in to change notification settings - Fork 0
Abstract State Machine Language is a programming language focused on simplicity, readability, brevity, and explicit code. This is a reference interpreter, and ASM-Lang will likely be re-written later.
python-processing-unit/ASM-Lang
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
Abstract State Machine Language is a programming language focused on simplicity, readability, brevity, and explicit code. This is a reference interpreter, and ASM-Lang will likely be re-written later.
Topics
Resources
Contributing
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published