UNPKG

babu-language

Version:

A fun programming language built on JavaScript. Created by Atikin Verse.

32 lines 579 B
{ "$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json", "name": "Babu Language", "patterns": [ { "include": "#keywords" }, { "include": "#strings" } ], "repository": { "keywords": { "patterns": [{ "name": "keyword.control.babu", "match": "\\b(if|while|for|return)\\b" }] }, "strings": { "name": "string.quoted.double.babu", "begin": "\"", "end": "\"", "patterns": [ { "name": "constant.character.escape.babu", "match": "\\\\." } ] } }, "scopeName": "source.babu" }