summaryrefslogtreecommitdiff
path: root/iotest/src/iotest.cpp
blob: a3b33377aa3112c5bbf9842ac7763f9a9a32585d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//============================================================================
// Name        : iotest.cpp
// Author      : Manuel Traut
// Version     :
// Copyright   : GPLv2
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>

#include "diasio.h"

using namespace std;

int main() {
	cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
	
	DIASIO dias;
	
	int counter = 0;
	
	while(counter < 255){
		dias.set(counter);
		counter++;
	}
	
	return 0;
}