Interfaces between Kite and other systems.
interface.http: HTTP request handling methods and classes.interface.language: Kite<->language bindings.interface.pop3:  SMTP methods and classes.
 Typical usage:
 
 import "interface.pop3";
 pop = interface.pop3|connect("your.smtp.server",110);
 pop|authorize("username","password");
 ("You have "+pop|messagecount|str+" messages!")|print;
 pop|getmessage(1)|print;
 pop|close;
interface.smtp:  SMTP methods and classes.
 Typical usage:
 
 smtp = interface.smtp|connect('smtp.gmail.com',1234,'google.com');
 smtp|setheader("From","Michael Edgar interface.text: Kite interface to common text handling libraries.