10 lines
184 B
Text
10 lines
184 B
Text
use FastCgi;
|
|
|
|
bundle Default {
|
|
class UrlEncode {
|
|
function : Main(args : String[]) ~ Nil {
|
|
url := "http://foo bar/";
|
|
UrlUtility->Encode(url)->PrintLine();
|
|
}
|
|
}
|
|
}
|