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
| { | |
| "ops" : [ { | |
| "code" : "PUSH1", | |
| "deep" : 0, | |
| "pc" : 0, | |
| "gas" : 1000000, | |
| "actions" : { | |
| "stack" : [ ], | |
| "memory" : [ ], | |
| "storage" : [ ] |
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.20; | |
| contract Store { | |
| address private owner; | |
| modifier onlyOwner() { | |
| require(msg.sender == owner); | |
| _; | |
| } |
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
| // g++ graph.cpp -lGL -lGLEW -lglfw | |
| #include <GL/glew.h> | |
| #include <GLFW/glfw3.h> | |
| #include <glm/ext.hpp> | |
| #include <vector> | |
| const std::size_t width = 800; | |
| const std::size_t height = 600; | |
| const auto vss = "#version 330\n" |
OlderNewer