blob: 95e48ed0102a8b2fd82864af0731c3520f0d510c [file] [log] [blame]
Eric Haszlakiewicz4c7f38e2012-04-28 14:14:26 -05001my_string=
2my_string.to_string()="\t"
3my_string=\
4my_string.to_string()="\\"
5my_string=foo
6my_string.to_string()="foo"
7my_int=9
8my_int.to_string()=9
9my_array=
10 [0]=1
11 [1]=2
12 [2]=3
13 [3]=null
14 [4]=5
15my_array.to_string()=[
16 1,
17 2,
18 3,
19 null,
20 5
21]
22my_array=
23 [0]=3
24 [1]=1
25 [2]=2
26 [3]=null
27 [4]=0
28my_array.to_string()=[
29 3,
30 1,
31 2,
32 null,
33 0
34]
35my_array=
36 [0]=null
37 [1]=0
38 [2]=1
39 [3]=2
40 [4]=3
41my_array.to_string()=[
42 null,
43 0,
44 1,
45 2,
46 3
47]
Eric Haszlakiewiczc3d1d592012-09-16 20:49:22 -050048baz_obj.to_string()="fark"
Eric Haszlakiewicz4c7f38e2012-04-28 14:14:26 -050049my_object=
50 abc: 12
51 foo: "bar"
52 bool0: false
53 bool1: true
54my_object.to_string()={
55 "abc":12,
56 "foo":"bar",
57 "bool0":false,
58 "bool1":true
59}