Skip to content

Instantly share code, notes, and snippets.

View Lemanja's full-sized avatar
🎯
Focusing

Lemanja Mears Lemanja

🎯
Focusing
View GitHub Profile
pragma solidity >=0.7.0 <0.9.0;
contract Base {
uint x;
constructor() public {
x = 10;
}
pragma solidity ^0.5.0;
contract SupplyChain {
/* set owner */
address owner;
/* Add a variable called skuCount to track the most recent sku # */
uint private skuCount;
@asabaylus
asabaylus / gist:3071099
Created July 8, 2012 14:12
Github Markdown Heading Anchors

Anchors in Markdown

To create an anchor to a heading in github flavored markdown. Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading) so your link should look like so:

[create an anchor](#anchors-in-markdown)