You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test1Formatted_pretty.expected 594 B

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