Skip to content

Instantly share code, notes, and snippets.

namespace foo {
uint8_t bar(uint8_t xyz) {return xyz +1;}
uint8_t baz(uint8_t xyz) {return xyz +2;}
}
namespace dog {
uint8_t fido(uint8_t xyz) {return xyz +3;}
uint8_t sparky(uint8_t xyz){return xyz +4;}
}