Files
WorkshopBlockchainGift/contracts/gift.tact
2026-03-07 20:59:13 +03:00

23 lines
356 B
Plaintext

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()
);
}
}