Set-Up
Installing IDE and environment setup.
move_project
|-sources
|-first.move
|Move.tomlmodule my_addrx::Sample
{
use std::debug;
fun sample_function()
{
debug::print(&12345);
}
#[test]
fun testing()
{
sample_function();
}
}Last updated