join/
join.rs

1/**
2 * In this example the program attempts to join the network.
3 *
4 * It does not do much, except for logging the output.
5 */
6
7use ipv8;
8
9fn main() {
10  let _ = ipv8::new(ipv8::Config::default());
11}