mirror of
https://github.com/nodejs/node.git
synced 2025-05-20 04:36:54 +00:00
5 lines
173 B
JavaScript
5 lines
173 B
JavaScript
var assert = require('assert');
|
|
var binding = require('./build/Release/binding');
|
|
assert.equal('world', binding.hello());
|
|
console.log('binding.hello() =', binding.hello());
|