When I have way too much free time...

Revision en2, by Long23042013, 2026-08-15 11:23:40

I somehow turned this:

#include <bits/stdc++.h>
using namespace std;

int main() {
    cout<<"Hello";
    return 0;
}

into this:

#include <iostream>
using
namespace
std;

int
main
()
{
cout
<<
"Hello";
return
0;
}

end into this:

#\
i\
n\
c\
l\
u\
d\
e\
<\
i\
o\
s\
t\
r\
e\
a\
m\
>
u\
s\
i\
n\
g
n\
a\
m\
e\
s\
p\
a\
c\
e
s\
t\
d
;
i\
n\
t
m\
a\
i\
n\
(
)
{
c\
o\
u\
t
<\
<
"\
H\
e\
l\
l\
o\
"
;
r\
e\
t\
u\
r\
n
0
;
}
Tags just for fun, c++, codestorm

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English Long23042013 2026-08-15 11:23:40 1 (published)
en1 English Long23042013 2026-08-15 09:04:05 618 Initial revision (saved to drafts)