Skip to content
/ mys Public

The Mys programming language - an attempt to create a statically typed Python-like language that produces fast binaries. See https://mys-lang.org for more information.

License

Notifications You must be signed in to change notification settings

mys-lang/mys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f3cb604 · Sep 11, 2022
Aug 6, 2022
Aug 31, 2022
Aug 31, 2022
Sep 11, 2022
Sep 11, 2022
Aug 23, 2020
Apr 13, 2022
Jul 20, 2022
Feb 17, 2021
Jan 9, 2021
Feb 3, 2021
Aug 14, 2022
May 28, 2022
Aug 6, 2022
Jul 22, 2022
Jan 29, 2021

Repository files navigation

discord test

WARNING

Mys is still in the very early stages of development. API:s will change, so now is the time to make suggestions! Join the Mys Discord server to get in touch with the developers!

Mys

The Mys programming language - an attempt to create a statically typed compiled Python-like language that produces fast binaries.

Mys is heavily inspired by Python's syntax and Rust's packaging.

Source code:

from random.pseudo import random

func main():
    print(random())

Package configuration:

[package]
name = "robot"
version = "0.1.0"
authors = ["Mys Lang <mys.lang@example.com>"]

[dependencies]
random = "latest"

Mys is mainly targeting resource constrained single core embedded systems, but is just as useful in desktop environments.

Documentation

Community

  • Discord: Mys' official Discord server.

Contributing

There are many ways in which you can participate in the project, for example:

  • Submit bugs and feature requests.
  • Fix bugs and implement new features.
  • Review the documentation and make pull requests for anything from typos to new content.

There is more information available in the Mys Developer Guide.