We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
solc
nixos
nix-env -i solc
SimpleStorage.sol
pragma solidity ^0.4.0; contract SimpleStorage { uint storedData; function set(uint x) { storedData = x; } function get() constant returns (uint) { return storedData; } }
solc --bin -o SimpleStorage SimpleStorage.sol
cd SimpleStorage ../../../target/debug/gaslighter cli -c SimpleStorage.bin
Voilà, that was your first hello world using SputnikVM.