$ curl ip.pr1v.net216.73.216.222<php
$ip = file_get_contents("http://ip.pr1v.net/");
echo "your IP is: $ip";
import urllib
ip = urllib.request.urlopen('http://ip.pr1v.net').read().strip()
print( "Your IP is %s" % ip )
ip := http_get("http://ip.pr1v.net/")
echo ip