Revision 4c0c1a4097a4eb11899ad249841d6b6d73896d71 authored by David Lucas on 06 December 2018, 09:36:26 UTC, committed by David Lucas on 06 December 2018, 09:36:26 UTC
1 parent 74f7f5f
Raw File
gmp.C
#include <gmpxx.h>
			int main () {
			if (__GNU_MP_VERSION < 4) return -1;
			mpz_class a(2),b(3),c(5); if ( a+b == c ) return 0; else return -1; }


back to top