source: git/factory/test_install.cc @ cd86ac

spielwiese
Last change on this file since cd86ac was ede8ba, checked in by Jens Schmidt <schmidt@…>, 27 years ago
* test_install.cc (main): calls to `operator<<()' replaced by calls to `printf()' git-svn-id: file:///usr/local/Singular/svn/trunk@870 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 442 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: test_install.cc,v 1.3 1997-10-29 15:23:37 schmidt Exp $ */
3
4//{{{ docu
5//
6// test_install.cc - test factory installation.
7//
8//}}}
9
10#include <factory.h>
11
12int
13main ()
14{
15    // this will try to locate the GF(q) tables
16    setCharacteristic( 2, 3, 'Z' );
17    printf( "%s\n", factoryVersion );
18    printf( "%s\n", factoryConfiguration );
19    printf( "Factory lives!!" );
20    return 0;
21}
Note: See TracBrowser for help on using the repository browser.