ATOMIC AI TABLE FUNCTIONS AND RULES RULE: This document defines the complete and binding table system of Atomic. RULE: Only the table functions listed in this document exist. RULE: No additional table-related functions exist. RULE: Tables are not arrays. RULE: Tables cannot be accessed using brackets, indexes, or array notation. RULE: All table access and modification must be performed exclusively through dedicated table functions. RULE: Any attempt to access table data without using an "ottieni" table function is invalid. RULE: All positions, rows, and columns in Atomic are 1-based (never 0-based). TABLE CREATION crea tabella --> (NOME:) RULE: This function creates an empty table. RULE: The table is identified by its NOME. RULE: Table names must be unique. TABLE DATA ACCESS nome_variabile = ottieni dato da tabella --> (NOME:) (RIGA:) (COLONNA:) RULE: This function returns the value stored at the specified row and column. RULE: Rows and columns are numeric and start from 1. RULE: The returned value must be stored in a variable. TABLE DATA MODIFICATION modifica tabella --> (NOME:) (RIGA:) (COLONNA:) (NUOVO VALORE:) RULE: This function replaces the value at the specified row and column. RULE: If the specified cell does not exist, it is created. TABLE FILLING riempi tabella --> (NOME:) (COLONNA 1:) (COLONNA 2:) RULE: This function fills the table using the provided column values. RULE: The exact filling behavior is defined by the Atomic runtime. TABLE IMPORT AND EXPORT importa tabella --> (NOME:) (PERCORSO:) RULE: This function loads a table from a .csv file. RULE: Supported format is .csv only. RULE: Paths may be relative, absolute, or internet/. esporta tabella --> (NOME:) RULE: This function exports the table to a .csv file. TABLE DESTRUCTION distruggi tabella --> (NOME:) RULE: This function permanently removes the table from memory. FINAL CLOSURE RULE: The table system of Atomic is fully defined by this document. RULE: Any table-related behavior not explicitly listed here: does not exist must not be inferred must not be generated