Skip to content

Commit 2ac6721

Browse files
committed
feat: Add ProXPL syntax highlighting and a standard library test file.
1 parent c0faf44 commit 2ac6721

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

extension/syntaxes/proxpl.tmLanguage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"patterns": [
4747
{
4848
"name": "keyword.control.proxpl",
49-
"match": "\\b(if|else|while|for|return|import)\\b"
49+
"match": "\\b(if|else|while|for|return|use)\\b"
5050
},
5151
{
5252
"name": "keyword.declaration.proxpl",

tests/stdlib_test.prox

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Functional Test for ProXPL Stdlib v0.1
22

3-
import std.io;
4-
import std.fs;
5-
import std.sys;
6-
import std.core;
3+
use std.io;
4+
use std.fs;
5+
use std.sys;
6+
use std.core;
77

88
// Test std.core
99
print("Testing std.core...");

0 commit comments

Comments
 (0)