This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.4.22 <0.7.0; | |
/** | |
* @title Storage | |
* @dev Store & retrieve value in a variable | |
*/ | |
contract Storage { | |
uint256 number; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# parse csv files to an awk array. | |
awk -F, '{ | |
parse_csv(r); | |
# replace following line with your code. | |
print r[1], r[2], r[3], r[4]; | |
} function parse_csv(r, _quote, _i, _n) { | |
_i = 1; | |
_quote = 0; # in a quoted string or not. |