Beoran 64670b404b Merge branch 'master' of gitlab.com:beoran/muesli | 4 năm trước cách đây | |
---|---|---|
cmd | 5 năm trước cách đây | |
test | 5 năm trước cách đây | |
LICENSE | 4 năm trước cách đây | |
README.md | 4 năm trước cách đây | |
ast.go | 4 năm trước cách đây | |
ast_test.go | 5 năm trước cách đây | |
builtin.go | 4 năm trước cách đây | |
design_muesli.muesli | 5 năm trước cách đây | |
doc.go | 6 năm trước cách đây | |
go.mod | 5 năm trước cách đây | |
go.sum | 5 năm trước cách đây | |
lexer.go | 5 năm trước cách đây | |
lexer_test.go | 5 năm trước cách đây | |
logger.go | 5 năm trước cách đây | |
muesli.go | 6 năm trước cách đây | |
parser.go | 4 năm trước cách đây | |
parser_test.go | 5 năm trước cách đây | |
signature.go | 4 năm trước cách đây | |
token.go | 5 năm trước cách đây | |
value.go | 4 năm trước cách đây | |
vm.go | 4 năm trước cách đây | |
vm_test.go | 5 năm trước cách đây |
It is a scripting language implemented in Go, that has a simple command based TCL like syntax but with rich semantics. Unlice TCL, all values are typed, and many types are supported, not just string values. Additionaly, if so desired, every symbol used in the syntax can be replaced by a key word, leading to a native language programming feel.
A Muesli program consists of one or more commands, separated by newlines or periods. Commands can be grouped together in blocks between braces {}. Lists are formed bu placing their contents between brackest []. A single command can be placed in parenthesis (), where the return value of the command will be subsituted.
A command starts with a word, and is followed by any number of arguments, which may be blocks, parenthesis, lists , or values. Like this, the language itself has no control statements, such as if, these are implemented as commands in stead.
Muesly supports several kinds of values, namely: