基本的な記法
Hello world
// Simple contract that returns constant string "Hello World"
contract HelloWorld {
function get() constant returns (string retVal) {
return "Hello World!!";
}
}Contract
contract Contract名 {
//スマート・コントラクトで行う処理をここに記述
}小文字・大文字の区別
文(Statement)最後にはセミコロンをつける
コメント
「//」でのコメント
「/* ~ */」でのコメント
Last updated