lessons/unwrap.cpp (9 lines of code) (raw):

#include <iostream> void printIfPositive(int i) { std::cout << "Surround and Unwrap me!"; } int main() { printIfPositive(3); }