summaryrefslogtreecommitdiff
path: root/comments.cpp
blob: a379c1d51de159732a0b41f24bbb6820f3e95047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <stdio.h>

/*
 * Playing around with comments
 * Nothing too important but learned something for sure.
 * 
 */

int main (void) {

	std::cout << "/*";
	std::cout << "*/";
	std::cout << /* "*/"*/"; 
	std::cout << /* "*/" /* "/*" */;
	
	return 0;
}