Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ealmloff/anti-array
a esolang without arrays or stacks
https://github.com/ealmloff/anti-array
esolang esolangs esoteric-language esoteric-programming-language programming-language
Last synced: 22 days ago
JSON representation
a esolang without arrays or stacks
- Host: GitHub
- URL: https://github.com/ealmloff/anti-array
- Owner: ealmloff
- License: gpl-3.0
- Created: 2020-06-07T20:15:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-12T19:38:32.000Z (over 4 years ago)
- Last Synced: 2024-12-29T20:49:51.662Z (about 2 months ago)
- Topics: esolang, esolangs, esoteric-language, esoteric-programming-language, programming-language
- Language: Java
- Homepage:
- Size: 88.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Anti-Array
a esolang without arrays or stacks== the idea ==
Anti-array is a programming language without arrays or stacks.
Instead of either, it allows you to interpret a string as code. This allows you to programmatically create variables.
example:
variableName = "var"
loop variableNumber = 0 | variableNumber < 100 | variableNumber ++ |//loop from 1-100 and assign a variable with the name var + the variable number to the variable number
( asCode ( variableName + variableNumber ) ) = variableNumber
}
loop variableNumber = 0 | variableNumber < 100 | variableNumber ++ |// print each previously created variable
print ( asCode ( variableName + variableNumber ) )
}== links ==
https://esolangs.org/wiki/Anti-Array //this contains information on syntax