Blogware: Zoundry
Jul 18th, 2006 by Roy Irwan
Nah sekarang nyobain Zoundry. Ok juga sih.
Sekilas kelebihan yang terlihat dibanding w.Bloggar adalah
- Ada otomatik setting
- WYSIWYG html designer
Teks berikut adalah contoh koding program:
function DelZ(S: string): string;
var
i: Integer;
sTemp: string;
begin
S := Trim(S);
i := 1;
if (Length(S) <> 0) then
for i := 1 to Length(S) do
if not (S[i] = ‘0′) then
Break;
//sTemp := sTemp + S[i];
sTemp := Copy(S, i, Length(S) - i + 1);
Result := sTemp;
end;

