Description
Gentee is a free open source script programming language. The Gentee programming language is designed to create scripts to automate repetitive actions and processes on your computer. If you use or plan to use .bat files, bash, PowerShell or special programs to automate actions, then try doing the same thing with Gentee.
Gentee script programming language alternatives and similar packages
Based on the "Embeddable Scripting Languages" category.
Alternatively, view Gentee script programming language alternatives based on common mentions on social networks and blogs.
-
gopher-lua
GopherLua: VM and compiler for Lua in Go -
expr
Expression language and expression evaluation for Go -
starlark-go
Starlark in Go: the Starlark configuration language, implemented in Go -
cel-go
Fast, portable, non-Turing complete expression evaluation with gradual typing (Go) -
go-python
naive go bindings to the CPython2 C-API -
metacall
MetaCall: The ultimate polyglot programming experience. -
go-duktape
[abandoned] Duktape JavaScript engine bindings for Go -
go-php
PHP bindings for the Go programming language (Golang) -
prolog
The only reasonable scripting engine for Go. -
agora
Dynamically typed, embeddable programming language in Go -
The uGO Language
Script Language for Go -
binder
High level go to Lua binder. Write less, do more. -
ecal
A simple embeddable scripting language which supports concurrent event processing. -
ngaro
An embeddable implementation of the Ngaro Virtual Machine for Go programs -
mosalat
a rule-engine with custom dsl for golang
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Gentee script programming language or a related project?
README
Gentee script programming language
Gentee is a free open source script programming language. The Gentee programming language is designed to create scripts to automate repetitive actions and processes on your computer. If you use or plan to use .bat files, bash, PowerShell or special programs to automate actions, then try doing the same thing with Gentee.
Want to see a sample application that successfully uses the Gentee programming language? Take a look at Eonza, a free cross-platform program for easy creation and management of scripts.
Documentation
All documentation is available on GitHub.
Download
You can download other binary distributions for Linux, macOS, Windows here.
Go integration
You can use the Gentee compiler and virtual machine in golang projects without any restrictions.
Documentation is available here.
How to run Gentee scripts
- Download the binary version of Gentee compiler for your operating system or build the gentee executable file from cli/gentee.go using go compiler.
$ go get -u github.com/gentee/gentee $ cd gentee/gentee/cli $ go build
- Specify the script file when running gentee. The script file can have any extension.
Linux: ./gentee myscript.g Wndows: gentee.exe myscript.g
- Also, you can associate the gentee program with script files in your operating system.
Gentee compiler/interpreter
gentee [-ver] [-t] <scriptname> [command-line parameters for script]
By default, the program prints the output of the script to the console and returns 0 if successful.
Command line parameters
- scriptname - full or relative path to the script file. You can specify the command line parameters for the script after the script file name.
- -ver - show the current version of Gentee language.
- -t - test the script. When using this parameter, the script must have the result parameter in the header with the expected value (example). In this mode, the program does not output the result of the script execution to the console. If the result does not match, an error message is displayed and an error code 4 is returned.
Error code
Code | Description |
---|---|
1 | The script file was not found. |
2 | Compilation error. |
3 | Runtime Error. |
4 | The result is erroneous at start with the -t parameter. |
Support
If you have any questions and suggestions or would like to help in the development, add your issue here.
License
Copyright (c) 2018-present, Alexey Krivonogov
*Note that all licence references and agreements mentioned in the Gentee script programming language README section above
are relevant to that project's source code only.