You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
303 B
11 lines
303 B
#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";
|
|
}
|
|
|