Code Block Example
Below is an example of a .md code block
MessageBoxA Example
#include <Windows.h>
#include <string>
void MsgBox(std::string msg, std::string title)
{
MessageBoxA(0, msg.c_str(), title.c_str(), 0);
} Below is an example of a .md code block
#include <Windows.h>
#include <string>
void MsgBox(std::string msg, std::string title)
{
MessageBoxA(0, msg.c_str(), title.c_str(), 0);
}