-
Notifications
You must be signed in to change notification settings - Fork 878
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'move-cn:main' into main
- Loading branch information
Showing
1,013 changed files
with
83,581 additions
and
769 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# 这个模板是2024年11月份的共学营才需要的 | ||
|
||
## b站,推特关注 | ||
|
||
- [] b站关注截图: ![关注截图](./images/b站关注.png) | ||
|
||
|
||
## 为共学营宣传(在朋友圈或者群聊中转发海报/文章) | ||
|
||
- [] 宣传截图:![宣传截图](./images/你的图片地址) | ||
|
||
## 每周课程学习 | ||
|
||
- [] 第一周:![学习记录截图](./images/task1/11月5日课程学习.png) | ||
- [] 第二周:![学习记录截图](./images/task3/11月12日课程学习.png) | ||
- [] 第三周:![学习记录截图](./images/你的图片地址) | ||
- [] 第四周:![学习记录截图](./images/你的图片地址) | ||
|
||
## 参加直播答疑 | ||
|
||
- [] 第一周:![学习记录截图](./images/你的图片地址) | ||
- [] 第二周:![学习记录截图](./images/你的图片地址) | ||
- [] 第三周:![学习记录截图](./images/你的图片地址) | ||
- [] 第四周:![学习记录截图](./images/你的图片地址) | ||
|
||
## 群里分享学习笔记 | ||
|
||
- [] 第一篇笔记 | ||
- [] 第二篇笔记 | ||
- [] 第三篇笔记 | ||
- [] 第四篇笔记 | ||
|
||
## 对外输出学习笔记 | ||
|
||
- [] 第一篇笔记【学习笔记链接】 | ||
- [] 第二篇笔记【学习笔记链接】 | ||
- [] 第三篇笔记【学习笔记链接】 | ||
- [] 第四篇笔记【学习笔记链接】 | ||
|
||
## 在HOH社区公众号发布自己的技术文章 | ||
|
||
- [] 第一篇笔记【公众号文章链接】 | ||
- [] 第二篇笔记【公众号文章链接】 | ||
- [] 第三篇笔记【公众号文章链接】 | ||
- [] 第四篇笔记【公众号文章链接】 | ||
|
||
## 直播分享学习技巧/工具推荐 | ||
|
||
- [] 会议截图:![会议记录截图](./images/你的图片地址) | ||
|
||
## 提交项目 | ||
|
||
- [] 项目提交![项目截图](./images/你的图片地址) | ||
|
||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
19 changes: 19 additions & 0 deletions
19
mover/0xHoGan/code/task1/hello_move/sources/hello_move.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module hello_move::hello ; | ||
|
||
use std::ascii::{String, string}; | ||
use sui::object::{Self, UID}; | ||
use sui::transfer::transfer; | ||
use sui::tx_context::{TxContext, sender}; | ||
|
||
public struct Hello has key { | ||
id: UID, | ||
say: String | ||
} | ||
|
||
fun init(ctx: &mut TxContext) { | ||
let hello_move = Hello { | ||
id: object::new(ctx), | ||
say: string(b"0xHoGan"), | ||
}; | ||
transfer(hello_move, sender(ctx)); | ||
} |
File renamed without changes.
Oops, something went wrong.