Skip to content

Instantly share code, notes, and snippets.

@deanhu2
Created November 21, 2017 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deanhu2/27236e19d17d6065860cc7f45c53499d to your computer and use it in GitHub Desktop.
Save deanhu2/27236e19d17d6065860cc7f45c53499d to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
void loadXML(std::string xml)
{
std::cout << xml;
}
int main()
{
// your code goes here
loadXML("<XML><Window><Button></Button></Window></XML>");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment