From dfaf911b5714fbc8bacc49fb571de4afaa31d74f Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Thu, 5 Mar 2026 12:46:24 +0800 Subject: [PATCH] doc: update dev notes --- DEVNOTE.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/DEVNOTE.md b/DEVNOTE.md index 9ac03bb..a4db96f 100644 --- a/DEVNOTE.md +++ b/DEVNOTE.md @@ -50,8 +50,12 @@ It would be okey for you to use any Antlr you like. ### Passing Dependencies -When executing Java code relying on these dependencies, -you can use `-cp` option of Java runtime to pass the directory where you can find those dependency's JAR files. +When compiling or executing Java code relying on these dependencies, +you can use `-cp` option to pass these dependency's JAR files. +All dependencies should be specified in one `-cp` option with `;` as separator. + +For example, when compiling, you can pass `-cp ";"` as option. +Or pass `-cp ".;;"` when executing. ## Python