mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
15 lines
248 B
Solidity
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);
|
|
}
|
|
}
|