1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-03 21:00:04 +02:00
Files
gitlit/node_modules/cuint/examples/adding.js
2018-06-03 13:57:23 +02:00

7 lines
175 B
JavaScript

var UINT32 = require('..').UINT32
var v1 = UINT32('326648991')
var v2 = UINT32('265443576')
var v1plus2 = v1.clone().add(v2)
console.log( v1 + ' + ' + v2 + ' = ' + v1plus2 )