Provoke testbench fail to ensure the CI notices errors
Some checks failed
Run the tests for a working verification of xtcl. / build (ubuntu-20.04) (push) Failing after 50s

This commit is contained in:
2025-09-03 01:18:04 +02:00
parent e73933f21f
commit ac23fedf24
2 changed files with 23 additions and 1 deletions

View File

@@ -32,3 +32,11 @@ pub fn commands(tcl: &str) -> Vec<String> {
return commands;
}
// @name words
// @return Vec<String>
// @brief Split command into words.
// @param command: &str
pub fn words(command: &str) -> Vec<String> {
vec![]
}