견고성-주석
Solidity는 C 스타일과 C ++ 스타일 주석을 모두 지원합니다.
//와 줄 끝 사이의 모든 텍스트는 주석으로 처리되며 Solidity Compiler에서 무시됩니다.
/ *와 * / 사이의 모든 텍스트는 주석으로 처리됩니다. 이것은 여러 줄에 걸쳐있을 수 있습니다.
예
다음 예제는 Solidity에서 주석을 사용하는 방법을 보여줍니다.
function getResult() public view returns(uint){
// This is a comment. It is similar to comments in C++
/*
* This is a multi-line comment in solidity
* It is very similar to comments in C Programming
*/
uint a = 1;
uint b = 2;
uint result = a + b;
return result;
}