Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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