Brax.pw

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);
}