Skip to content

Commit 74f0b2f

Browse files
Fix build script for linux
1 parent 954a062 commit 74f0b2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CritLang/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if ($help) {
1919
}
2020

2121
if ($codegeneration) {
22-
java -jar .\antlr-4.11.1-complete.jar -Dlanguage=CSharp .\Content\Crit.g4 -visitor -encoding utf8 -Xexact-output-dir -o .\Content\.antlr\
22+
java -jar ./antlr-4.11.1-complete.jar -Dlanguage=CSharp ./Content/Crit.g4 -visitor -encoding utf8 -Xexact-output-dir -o ./Content/.antlr/
2323
Write-Host "Generated code from grammar!"
2424
}
2525
if ($run) {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ cd CritLang/CritLang
6060

6161
- [X] Documentation.
6262
- [X] Automatically detect the length of a number and assign to it the corret type (int, long, float and double)
63-
- [ ] Add Crit Types.
63+
- [ ] Add Crit Types & remove all object types.
6464
- [ ] Add Python like dictionaries.
6565
- [ ] Integrate [NANQL](https://github.com/lucascompython/NANQL) with Crit's dictionaries and arrays.
6666
- [ ] Add the hability of making functions.

0 commit comments

Comments
 (0)