Highlight Test

This is a highlight test.

Normal block

1
alert('Hello World!');
1
print 'helloworld'

Highlight block

1
alert( 'Hello, world!' );
1
print 'helloworld'
1
2
3
def foo
  puts 'foo'
end
def foo
  puts 'foo'
end
1
2
3
def foo
  puts 'foo'
end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

using namespace std;

void foo(int arg1, int arg2)
{

}

int main()
{
  string str;
  foo(1, 2);
  cout << "Hello World" << endl;
  return 0;
}