This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "private-static-const-char-array.hpp" | |
const char | |
PrivateStaticConstCharArray::private_static_const_char_array[] | |
= "A bit of text used to test private static const char array in a " \ | |
"class declaration/definition"; | |
PrivateStaticConstCharArray::PrivateStaticConstCharArray ( ) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ocd.cpp, all rights reserved for the future. | |
#include <cstdlib> | |
#include <iostream> | |
class OCD { | |
protected: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export TMP="You ain't got no kind of feeling inside" | |
.PHONY: all | |
all: ruleA ruleB ruleC ruleD | |
ruleA: | |
@echo root.ruleA ${TMP} | |
export TMP="I got something that'll sho nuff set yo' stuff on fire" |