This is a highlight test.
Normal block
alert('Hello World!');
print 'helloworld'
Highlight block
alert( 'Hello, world!' );
print 'helloworld'
def foo
puts 'foo'
end
1
2
3
def foo
puts 'foo'
end
#include <iostream>
using namespace std;
void foo(int arg1, int arg2)
{
}
int main()
{
string str;
foo(1, 2);
cout << "Hello World" << endl;
return 0;
}