This is a landing page for the directory of Pysembly official libraries. These libraries are in some cases written by me and in some cases written by others and sent to me, where I deem them worth featuring.
To access, write import [library] in the program and then it is usable.
Creator: Me
Access Instruction: import STRCL_unbound
Description:
STRCL Unbound is a library for Pysembly that adds two new instructions:
void.get #~a~b~c...
void.put #~a~b~c...
Void.put stores the value at the given memory address # to the Uncountable Void at coordinates (a,b,c,...). Note that the Uncountable Void is infinite in dimension and size. The infinite number of missing coordinates at the end are taken as 0s, so (1,1,0) <-> (1,1). This is to ensure that the user does not have to write infinite zeros.
Void.get does the exact opposite - grab the value at Uncountable Void coordinates (a,b,c,...) and stores it in memory address #.
Variable indirection is allowed in the void commands.
Creator: Me
Access Instruction: import STRCL_eternal
Description:
STRCL Eternal is a library for Pysembly that adds two new instructions:
flow.time #
flow.tick #
Flow.time replaces the value in memory slot # with the time since program start. Flow.tick does the same but with ticks/interpreter cycles since program start.
The values cannot be edited.