Solidität - Kommentare
Solidity unterstützt sowohl C-Style- als auch C ++ - Style-Kommentare.
Jeder Text zwischen einem // und dem Ende einer Zeile wird als Kommentar behandelt und vom Solidity Compiler ignoriert.
Jeder Text zwischen den Zeichen / * und * / wird als Kommentar behandelt. Dies kann mehrere Zeilen umfassen.
Beispiel
Das folgende Beispiel zeigt, wie Kommentare in Solidity verwendet werden.
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;
}