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 699 B

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