The Meson Build System
http://mesonbuild.com/
9 lines
150 B
9 lines
150 B
4 years ago
|
#include <string>
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
std::string* s = new std::string("Hello");
|
||
|
delete s;
|
||
|
return 0;
|
||
|
}
|