function NetExample2()
net.Start( "Example2" ) // start writing the net message
net.WriteString( "Hello, world!" )
net.WriteBit( true ) // can be 'true' or 'false'
net.WriteInt( -2^31, 32 ) // anything under roughly 2^31 - 1
net.WriteUInt( 2^31-1, 32 ) // same as int ( for some reason? )
net.WriteFloat( 2^127 ) // anything under roughly 2^128 - 1
net.WriteDouble( 2^1023 ) // anything under roughly 2^1024 - 1
net.WriteEntity( player.GetByID( 1 ) ) // props, players, npcs, etc
net.Broadcast() // send the message to all connected players
end