melo / codebits

Presentations and projects done at SAPO Codebits

melo (author)
Wed Nov 19 03:55:06 -0800 2008
commit  d6805095a076b39f6abad2c9626a73a403564ab2
tree    22dcb26e2ed218a9f98dbeb4393054856c0c7de9
parent  c9ababa3eba82c25a2e4ac4d0aeaf78df1093df8
codebits / 2008 / xmpp-hands-on / bots / process_sync / process_sync-2.pl
100755 20 lines (11 sloc) 0.202 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env perl
 
package ProcessSync;
 
use strict;
use warnings;
use base 'Bot';
 
 
package main;
 
use strict;
use warnings;
use All;
 
my @bots = All->connect_all('ProcessSync');
 
ProcessSync->run;