Fix dev commands directory structure

This commit is contained in:
lash 2023-04-12 18:20:45 +01:00
parent df9b30287c
commit 15c64a46e6
Signed by untrusted user who does not match committer: lash
GPG Key ID: 21D2E7BB88C2A746
4 changed files with 4 additions and 2 deletions

View File

@ -192,14 +192,14 @@ Located in the `dev/` directory.
### Test data generation
`go run ./dev/testdata/ <directory>`
`go run ./dev/gendata/ <directory>`
Outputs bytecodes and templates for test data scenarios used in `engine` unit tests.
### Interactive runner
`go run ./dev [-d <data_directory>] [--root <root_symbol>]`
`go run ./dev/interactive [-d <data_directory>] [--root <root_symbol>]`
Creates a new interactive session using `engine.DefaultEngine`, starting execution at symbol `root_symbol`

2
vm/doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package vm handles the line-by-line execution of festive bytecode.
package vm