Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bas1c1/go-script

Go Script is a dynamically typed general purpose programming language
https://github.com/bas1c1/go-script

code csharp-code go go-script golang golang-script goscript interpreted-programming-language interpreter language programming programming-language script scripting scripting-language

Last synced: 24 days ago
JSON representation

Go Script is a dynamically typed general purpose programming language

Awesome Lists containing this project

README

        



GoScript

Go Script Programming Language

Go Script is a dynamically typed, general purpose programming language for creating universal applications!

Features

- The possibility of functional and object-oriented programming
- Knife http listening library
- Supports the ability to integrate JS code
- Friendly and easy-to-read syntax
- Lightweight interpreter
- Standart libraries

In the last update

In the latest update was:

- updated "files" library
- added new data type "byte"
- added command line arguments
- added "const" operator
- added "using" statement
- added "if-then-else" expression
- added new "socket" library

`~7000` lines of code


Documentation


Documentation


Contribution


Go Script is open-source project. You can throw pull requests and I'll look through them all!


DevKit


DevKit

Examples

(Very simple blockchain written on GoScript)

(More examples)

Simple "Hello world":

```py
use "std"

print("Hello, world!")

stop()

//Output: Hello, world!
```