Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Testing latest pari + WASM + node.js... and it works?! Wow.

28495 views
License: GPL3
ubuntu2004
1
/* Copyright (C) 2010 The PARI group.
2
3
This file is part of the PARI/GP package.
4
5
PARI/GP is free software; you can redistribute it and/or modify it under the
6
terms of the GNU General Public License as published by the Free Software
7
Foundation; either version 2 of the License, or (at your option) any later
8
version. It is distributed in the hope that it will be useful, but WITHOUT
9
ANY WARRANTY WHATSOEVER.
10
11
Check the License for details. You should have received a copy of it, along
12
with the package; see the file 'COPYING'. If not, write to the Free Software
13
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
14
#include "pari.h"
15
16
const char *paricfg_datadir = GPDATADIR;
17
const char *paricfg_version = PARIVERSION;
18
const char *paricfg_buildinfo = PARIINFO;
19
const long paricfg_version_code = PARI_VERSION_CODE;
20
const char *paricfg_vcsversion = PARI_VCSVERSION;
21
const char *paricfg_compiledate = __DATE__;
22
const char *paricfg_mt_engine = PARI_MT_ENGINE;
23
const char *paricfg_gphelp = GPHELP;
24
25