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
/* 迭代器示例 */ | |
var agg = (function() { | |
var index = 0, | |
data = [1,2,3,4,5,6]; | |
length = data.length; | |
var api = { | |
next: function() { | |
if(!this.hasNext()) { |
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.17; | |
contract LoveRose { | |
address public ceoAddress; | |
struct Rose { | |
uint64 birthTime; | |
address buyer; | |
uint value; |
OlderNewer