windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
Documentation
{
  "$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
  "name": "Windjammer",
  "scopeName": "source.windjammer",
  "patterns": [
    { "include": "#comments" },
    { "include": "#strings" },
    { "include": "#keywords" },
    { "include": "#decorators" },
    { "include": "#types" },
    { "include": "#numbers" },
    { "include": "#functions" },
    { "include": "#operators" }
  ],
  "repository": {
    "comments": {
      "patterns": [
        {
          "name": "comment.line.double-slash.windjammer",
          "match": "//.*$"
        },
        {
          "name": "comment.block.windjammer",
          "begin": "/\\*",
          "end": "\\*/"
        }
      ]
    },
    "strings": {
      "patterns": [
        {
          "name": "string.quoted.double.windjammer",
          "begin": "\"",
          "end": "\"",
          "patterns": [
            {
              "name": "constant.character.escape.windjammer",
              "match": "\\\\."
            },
            {
              "name": "constant.other.placeholder.windjammer",
              "match": "\\$\\{[^}]+\\}"
            }
          ]
        },
        {
          "name": "string.quoted.single.windjammer",
          "match": "'([^'\\\\]|\\\\.)'"
        }
      ]
    },
    "keywords": {
      "patterns": [
        {
          "name": "keyword.control.windjammer",
          "match": "\\b(if|else|while|for|loop|break|continue|return|match|async|thread)\\b"
        },
        {
          "name": "keyword.declaration.windjammer",
          "match": "\\b(fn|let|mut|struct|enum|trait|impl|use|type)\\b"
        },
        {
          "name": "keyword.other.windjammer",
          "match": "\\b(pub|self|super|crate|mod)\\b"
        },
        {
          "name": "constant.language.windjammer",
          "match": "\\b(true|false|nil)\\b"
        }
      ]
    },
    "decorators": {
      "patterns": [
        {
          "name": "entity.name.function.decorator.windjammer",
          "match": "@\\w+"
        }
      ]
    },
    "types": {
      "patterns": [
        {
          "name": "storage.type.windjammer",
          "match": "\\b(int|float|bool|string|char|void)\\b"
        },
        {
          "name": "entity.name.type.windjammer",
          "match": "\\b[A-Z][a-zA-Z0-9_]*\\b"
        }
      ]
    },
    "numbers": {
      "patterns": [
        {
          "name": "constant.numeric.windjammer",
          "match": "\\b\\d+(\\.\\d+)?\\b"
        }
      ]
    },
    "functions": {
      "patterns": [
        {
          "name": "entity.name.function.windjammer",
          "match": "\\b([a-z_][a-zA-Z0-9_]*)\\s*\\("
        }
      ]
    },
    "operators": {
      "patterns": [
        {
          "name": "keyword.operator.windjammer",
          "match": "(\\+|-|\\*|/|%|==|!=|<|>|<=|>=|&&|\\|\\||!|&|\\||\\^|<<|>>|=)"
        }
      ]
    }
  }
}