手把手教你学懂Move语言_打印Hello World
部署环境 powershell运行
生成账户信息
编写代码 在Source文件夹中创建hello.move文件
module Lesson1::HelloWorld{
use std::debug::print;
use std::string::utf8;
#[test]
fun test_hello_world(){
print(&utf8(b"Hello World")); //& var -->Read only &mut var read write
}
}
测试运行 测试通过 成功打印Hello World信息
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!