Hybrid Markup Language It is extension of XML: {tag} content {/tag} Notice curled braces Inside {tag} content is processed as a programming language, not as a markup formatting It’s like PHP inside HTML It uses special Markpro programming language with {tag} syntax (in previous post) This new Hybrid language can be used by AI and in datalakes because it seamlessly combines data and code
iTeraTor is universal language that unifies source code and data in one seamless format -------------------------------------------------------------------------- {code} Aura //new programming language {module} //name // Aura source code {/module} {/code} {data} JSON {"a":1, "B":2, "C":[1,2,3]} //and other JSON data {/data} {data} XML <tag> content </tag> //and other XML data {/data} ------------------------------------------------------------------------ data access inside Aura source code: data.json. ... data.xml. ... connecting to another files from iTeraTor: {link} code1.aura {/link} //for source code {link} data1.itr {/link} //for data {link} code1-data1.itr {/link} //for both in oop class' objects data (data members) are combined with code (member functions) in iTeraTor there is the same thing only on more general level: entire s...
NovaBook < : > Official User Guide for the Nova Programming Language Nova is designed with a primary goal: to make code flow from left to right, much like natural writing. 1. Basics 2. Structure 3. Control Flow 4. Advanced 5. OOP 6. Intermodular 7. File system 1. The Basics: Syntax & Variables First, let's cover the fundamental building blocks of the Nova language. Key Concepts Reversed Assignment Operator: Instead of variable = value, Nova uses value : variable . This allows for a natural left-to-right flow (e.g., a + b : a). Tagged Keywords: Control flow is enclosed in curly braces, like a markup language. Examples: <while> , <fun> , <if> . Comments: Single-line comments begin with // . Data Types & Operators Nova supports standard data types: int: integer float: float decimal char: character string: array of "char" bool: b...
Comments
Post a Comment