Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created February 1, 2023 15:48
Show Gist options
  • Save bartubozkurt/dcdf4d6180bc4a4d67d486dcd9f7f935 to your computer and use it in GitHub Desktop.
Save bartubozkurt/dcdf4d6180bc4a4d67d486dcd9f7f935 to your computer and use it in GitHub Desktop.
/* Bad */
// Sample1.sol
pragma solidity =0.8.4;
// Sample2.sol
pragma solidity =0.8.0;
/* Better */
// Sample1.sol
pragma solidity =0.8.4;
// Sample2.sol
pragma solidity =0.8.4;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment