Skip to content

bas1c1/Go-Script

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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":

use "std"

print("Hello, world!")

stop()

//Output: Hello, world!