mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
239 B
Text
10 lines
239 B
Text
|
|
use util;
|
||
|
|
print(strformattime("%"));
|
||
|
|
print(strformattime("%-"));
|
||
|
|
print(typeof(strformattime("%Y",1)));
|
||
|
|
print(strformattime("ancient %S time",1));
|
||
|
|
var v:=strformattime("reserve buffer %T%T%T%T%T%T",1);
|
||
|
|
print(len(v));
|
||
|
|
print(v[len(v)-4,5]);
|
||
|
|
|