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

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