1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-17 02:40:00 +00:00

Update README.md

This commit is contained in:
Calvin Rose 2018-03-18 15:05:31 -04:00
parent 105f5f3b2d
commit a512e3e837
2 changed files with 7 additions and 8 deletions

View File

@ -94,17 +94,17 @@ $(DST_TARGET): $(DST_ALL_SOURCES) $(DST_ALL_HEADERS)
###################
repl: $(DST_TARGET)
@ ./$(DST_TARGET)
./$(DST_TARGET)
debug: $(DST_TARGET)
@ $(DEBUGGER) ./$(DST_TARGET)
$(DEBUGGER) ./$(DST_TARGET)
valgrind: $(DST_TARGET)
@ valgrind --leak-check=full -v ./$(DST_TARGET)
valgrind --leak-check=full -v ./$(DST_TARGET)
test: $(DST_TARGET)
@ ./$(DST_TARGET) test/suite0.dst
@ ./$(DST_TARGET) test/suite1.dst
./$(DST_TARGET) test/suite0.dst
./$(DST_TARGET) test/suite1.dst
valtest: $(DST_TARGET)
valgrind --leak-check=full -v ./$(DST_TARGET) test/suite0.dst

View File

@ -81,7 +81,6 @@ make test
On a posix system using make as the backend, compiling and running is as follows (this is the same as
most CMake based projects).
### Build
```sh
cd somewhere/my/projects/dst
mkdir -p build
@ -96,11 +95,11 @@ The repl can also be run with the CMake run target.
make run
```
### Examples
## Examples
See the examples directory for some example dst code.
### Editor
## Editor
There is some preliminary vim syntax highlighting in [dst.vim](https://github.com/bakpakin/dst.vim).
Generic lisp synatx highlighting should provide good results, however.