aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/serpent-go/serpent/example.cpp
blob: 1ce2590d0666f72e245d8e87610567409f5b6df7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <libserpent/funcs.h>
#include <libserpent/bignum.h>
#include <iostream>

using namespace std;

int main() {
    cout << printAST(compileToLLL(get_file_contents("examples/namecoin.se"))) << "\n";
    cout << decimalSub("10234", "10234") << "\n";
    cout << decimalSub("10234", "10233") << "\n";
}