pragma solidity ^0.4.0; contract HelloWorld{ string word="hello world"; function getWord() constant public returns(string) { return word; } }