8 lines
No EOL
208 B
C++
8 lines
No EOL
208 B
C++
import Crafter.CppDOM;
|
|
using namespace Crafter;
|
|
|
|
int main(){
|
|
HtmlElement body("body");
|
|
body.SetInnerHTML("Hello World!");
|
|
//No need to call FreeJs, this is done in the destructor of HtmlElement.
|
|
} |