Does Move have a document of command line such as ‘move sandbox run’,I’m confused about passing arguments during call a script or function. The command line helper just says to use ‘–args’ but there‘s no example in case that script has multi args .
eg:
script {
use std::debug;
fun add(a: u64,b:u64){
debug::print(&(a+b))
}
}
How should I run this script?