mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
178 B
Text
10 lines
178 B
Text
include "packtst";
|
|
|
|
var ob := dictionary;
|
|
ob[ "hey" ] := 57;
|
|
ob[ "you" ] := 73;
|
|
ob[ "blah" ] := "test";
|
|
|
|
var rep := "d3:S4:blahS4:testS3:heyi57S3:youi73";
|
|
|
|
test_pack( ob, rep );
|