rhai/scripts
2022-09-03 15:48:00 +08:00
..
all_in_one.d.rhai Add fast operators to benchmarks. 2022-09-03 15:48:00 +08:00
array.rhai Refine example scripts. 2021-04-09 22:48:47 +08:00
assignment.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
comments.rhai Fix scripts. 2021-04-16 10:33:55 +08:00
doc-comments.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
fibonacci.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
for1.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
for2.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
for3.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
function_decl1.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
function_decl2.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
function_decl3.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
function_decl4.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
if1.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
if2.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
loop.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
mat_mul.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
module.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
oop.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
op1.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
op2.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
op3.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
primes.rhai Add fast operators to benchmarks. 2022-09-03 15:48:00 +08:00
README.md Notes on how to install tools. 2021-04-20 11:06:05 +08:00
speed_test.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
string.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
strings_map.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
switch.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00
while.rhai Use //! for script docs. 2022-07-24 23:03:35 +08:00

Testing Scripts

Testing scripts written in Rhai.

Install rhai-run Tool

Use the following command to install the rhai-run tool:

cargo install --path . --bin rhai-run

How to Run

Run scripts using the rhai-run tool:

rhai-run ./scripts/test_script_to_run.rhai

or

cargo run --bin rhai-run ./scripts/test_script_to_run.rhai