deploy test
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
struct Content {
|
||||
content: String;
|
||||
}
|
||||
|
||||
contract Gift {
|
||||
// owner: Address;
|
||||
// content: Content;
|
||||
|
||||
// init(
|
||||
// owner: Address,
|
||||
// content: Content
|
||||
// ) {
|
||||
// self.owner = owner;
|
||||
// self.content = content;
|
||||
// }
|
||||
|
||||
receive() {
|
||||
self.reply(
|
||||
"Hello, world!".asComment()
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user