Subversion Repositories Kolibri OS

Rev

Rev 5959 | Rev 5974 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5965 leency 1
#define MEMSIZE 4096*120
5959 leency 2
 
3
#include "../lib/io.h"
4
#include "../lib/collection.h"
5
 
6
void main()
7
{
8
	collection s;
5965 leency 9
	int i;
5959 leency 10
	io.run("/sys/develop/board", "");
5965 leency 11
	s.add("Hello");
12
	s.add("World!");
5959 leency 13
	debugln(s.get(0));
14
	debugln(s.get(1));
5965 leency 15
	s.drop();
5959 leency 16
}