Files
tokei-mirror/tests/data/solidity.sol
2019-02-14 14:11:51 +01:00

15 lines
248 B
Solidity

// 14 lines 6 code 7 comments 1 blanks
pragma solidity >=0.4.22 <0.6.0;
// Comment line
contract Foo {
/*
Comment line
Comment line
Comment line
*/
function foo(address bar) public {
require(bar != 0);
}
}