관심있는 것들 정리
color scripter 본문
color scripter 라는 사이트가 있어서, 간단히 테스트를 해 봤는데... 잘 나오는 지 테스트
color scripter 사이트에서 sublime text 형태로 작성한 것
1
2
3
4
5
6
7
8
|
#include<iostream>
using namespace std;
int main()
{
cout << "hello world\n";
}
|
cs |
tistory에서 제공해주는 코드 블럭 사용한 것
#include<iostream>
using namespace std;
int main()
{
cout << "Hello world\n";
}
어떤 것이 좋은 지... 잘 모르겠다
반응형