view nodejs/hello.cc @ 544:16f4f8305c8f Android_Skia

Start MadButterfly nodejs plugin
author Thinker K.F. Li <thinker@branda.to>
date Fri, 04 Jun 2010 22:29:26 +0800
parents
children
line wrap: on
line source

#include <v8.h>

using namespace v8;

extern "C" void
init(Handle<Object> target) {
    HandleScope scope;

    target->Set(String::New("Hello"), String::New("World"));
}