//: C10:Arithmetic.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "NamespaceInt.h"
void arithmetic()
{
using namespace Int;
Integer x;
x.setSign(positive);/* L'istruzione sopra setta "s" a "positive".*/
}
int main(){} ///:~