MaxLang语言基础
-- All New Design, All For DevOps
MaxLang is the dedicated programming language for automating the DevOps tasks, which is implemented and maintained by MaxCloud team.
Primitive Data Types
Number
In Maxlang, it is not necessary to distinguish the numerical value's type, such as integer and float. Maxlang can recoginze and convert values automatically.
String
A string value is quoted by " or ` .
Boolean
The boolean value is either "true" or "false".
Function
Function is treated as the basic data type and the first class citizen in Maxlang. If you are familiar with Lisp, you can treat it as the function in Lisp.
In Maxlang, function can be used as the arguments or the return value of other functions.
The following example is about how you can implement "Command Patter" (GoF) very easily by leveraging Maxlang's function.
Statements
Conditional statement
The typical conditional statements, "if" and "if-else" are both supported in Maxlang.
Loop statement
For loop structure, currently, only "while" statement is supported. The "break" and "continue" statements are supported, which can be used in the loop structure to change the execution flow.
Collections
Array
The elements in an array can be any primitive type object, even a function, also the different type of the elements could be mixed in an array.
The index of an array starts from 0.
Built-in functions for array
len ( < array > )
Get the number of the elements in the array.
first ( < array > )
Get the first element of the array
last ( < array > )
Get the last element of the array
rest (< array >)
return a new array with removing the first element
The following example is to travel an array with the built-in functions.
HashTable
Like the mainstream programming language, HashTable is the collection of the key-value pairs.
In a key-value pair :
The key can be a primitive object except a function.
The value be a primitive object, a collection or a hashtable.
Built-in functions for Hashtable
keys (< hashtable >)
Get the keys of a hashtable.
values (< hashtable >)
Get the values of a hashtable
Built-in functions
Conversion
ntos (< number >)
Convert a numeric value to the related string value.
ston (< string >)
Convert a string value to the related numeric value.
JSON query
For one simple example is more expressive than thousands of the words, I'd like to use several simple examples to explain how the built-in functions work.
MaxLang is growing fast, still more to come!
最后更新于
这有帮助吗?