Go-Script

Go Script is a dynamically typed general purpose programming language

MIT License

Stars
13

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

  • 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 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

(Very simple blockchain written on GoScript)

(More examples)

Simple "Hello world":

use "std"

print("Hello, world!")

stop()

//Output: Hello, world!