Skip to content

Latest commit

 

History

History
75 lines (51 loc) · 711 Bytes

test.md

File metadata and controls

75 lines (51 loc) · 711 Bytes

H1

H2

H3

underline

ital test

bold test

Ital Bold test

inline highlight

multiline
highlight
  • list1
  • list2
  • list3

list1 list2 list3

  • check list unchecked
  • check list checked

tiny underline

#include <stdio.h>

int fact (int x)
{
	if (x > 1)
		return fact(x-1) * x;

	return 1;
}

int main ()
{
	const x = fact(10);

	printf("%d\n", x);

	return 0;
}
def main ():
	msgTop = "Hello,";
	msgBot = "world!";

	msgTop += ' ';
	msgTop += msgBot;

	print(msgTop);

if __name__ == "__main__":
	main();

int main (const int argc, const char** argv);

link alt