a programming lang easy and simple use for webdev and sys management
imaginary sytnex print and for-loop
print("Hello, World!")
for i = 0; range(0,100: {
# code
}variables and if-elif-else
// make variable hi
hi = "Test"
// or
string hi = ""
if hi == "Test": {
/* code */
} elif hi == "hi": {
pass
} else {
print("Error")
}multiple lines tesk
Hello = "Hello"; World = "World"; system.printLine(Hello+" "+World+"!")import library/package
require "name" :-: name="Lib"
require "url" :-: name="Test" // import online package
print(Lib)
print(Test.foo())funcs
func foo():{
print("Hello foo")
}
func bar(text):{
print("Hello "+text)
}
foo()
bar("World!")