This file contains hidden or 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.18; | |
contract Test { | |
address owner; | |
uint256 val = 256; | |
address otherContract; | |
constructor() public{ | |
owner = msg.sender; |
This file contains hidden or 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.3; | |
/** | |
* @title ECCMath | |
* | |
* Functions for working with integers, curve-points, etc. | |
* | |
* @author Andreas Olofsson ([email protected]) | |
*/ | |
library ECCMath { |
This file contains hidden or 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.3; | |
/** | |
* @title ECCMath | |
* | |
* Functions for working with integers, curve-points, etc. | |
* | |
* @author Andreas Olofsson ([email protected]) | |
*/ | |
library ECCMath { |
This file contains hidden or 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.21; | |
contract Vehicles{ | |
struct Person { | |
address owner; | |
string yearOfRegis; | |
string etag_id; | |
} | |
This file contains hidden or 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
#include "stdio.h" | |
#include "stdlib.h" | |
struct NODE | |
{ | |
int Data; | |
struct NODE *left, *right; | |
}; | |
typedef struct NODE *NODEPTR; |
NewerOlder