Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 351 Bytes

test.md

File metadata and controls

28 lines (23 loc) · 351 Bytes
layout title
Test

This is the header

Header2

Some content goes here

{% highlight ruby %} function(a:number, b:string){ console.writeLine(a); if ( b == null) return a+1; return a; } {% endhighlight %}

	function(a:number, b:string){
		console.writeLine(a);
		if ( b == null)
			return a+1;
		return a;
	}