2015-12-15 17:18:38 +01:00
|
|
|
#define MEMSIZE 4096*120
|
2015-12-13 14:28:06 +01:00
|
|
|
|
|
|
|
#include "../lib/io.h"
|
|
|
|
#include "../lib/collection.h"
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
collection s;
|
2015-12-15 17:18:38 +01:00
|
|
|
int i;
|
2015-12-13 14:28:06 +01:00
|
|
|
io.run("/sys/develop/board", "");
|
2015-12-15 17:18:38 +01:00
|
|
|
s.add("Hello");
|
|
|
|
s.add("World!");
|
2015-12-13 14:28:06 +01:00
|
|
|
debugln(s.get(0));
|
|
|
|
debugln(s.get(1));
|
2015-12-15 17:18:38 +01:00
|
|
|
s.drop();
|
2015-12-13 14:28:06 +01:00
|
|
|
}
|