basic language support for sublime and vscode

This commit is contained in:
cozis
2022-12-06 17:42:37 +01:00
parent 8f2723c3aa
commit a327aa1cf7
9 changed files with 131 additions and 16 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ fun newCircularQueue(T: Type = int, max: int = 3) {
if max <= 0:
error("Maximum queue size must be positive");
list = [];
i = 0;
while i < max: {