mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
15 lines
203 B
Text
15 lines
203 B
Text
var dict := dictionary;
|
|
|
|
var a := "hello world";
|
|
|
|
dict.insert( a[1], 1 );
|
|
dict.insert( a[2], 2 );
|
|
dict.insert( a[3], 3 );
|
|
|
|
print( dict );
|
|
|
|
var b := pack( dict );
|
|
print(b);
|
|
|
|
var c := unpack(b);
|
|
print(c);
|