반응형
Hello World
https://tact-by-example.org/00-hello-world
모든 언어의 시작은 Hello Wolrd 이듯 tact도 동일하다. 아래와 같은 컨트랙트를 배포해 getter() 함수를 실행해보자.
contract HelloWorld {
get fun greeting(): String {
return "hello world";
}
}
결과는 아래와 같다.
Return value: "hello world"
솔리디티로 변경하면 아래 정도로 변경 가능할 듯.
contract HelloWorld {
function greeting() public pure returns (string memory) {
return "Hello world";
}
}
contract HelloWorld {
string hi = "Hello world";
function greeting() public view returns (string memory) {
return hi;
}
}
반응형
'블록체인 > TACT' 카테고리의 다른 글
[Tact] Bools (0) | 2024.05.15 |
---|---|
[Tact] Integer Opertaions (0) | 2024.05.15 |
[Tact] Integers (0) | 2024.05.15 |
[Tact] Simple 카운터 (0) | 2024.05.07 |
[TACT] TON 블록체인 개발을 위한 언어 (0) | 2024.05.07 |
댓글