Skip to content

Instantly share code, notes, and snippets.

@DanteAlabastro
Last active October 5, 2018 20:47
Show Gist options
  • Save DanteAlabastro/e270321aef6c475d6673b1d7a416168c to your computer and use it in GitHub Desktop.
Save DanteAlabastro/e270321aef6c475d6673b1d7a416168c to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.25+commit.59dbf8f1.js&optimize=true&gist=
pragma solidity ^0.4.25;
/*Test Solidity Upload*/
contract test{
uint number = 8;
function WhatNumber()public view returns(uint){
return number;
}
}
pragma solidity ^0.4.25;
/*Another Remix Test*/
contract AnotherTest{
uint AnotherNumber = 10;
function WhatNumber()public view returns(uint){
return AnotherNumber;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment