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_spaced.expected 665 B

123456789101112131415161718192021222324252627282930313233343536373839
  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()=[ 1, 2, 3, null, 5 ]
  19. my_array=
  20. [0]=3
  21. [1]=1
  22. [2]=2
  23. [3]=null
  24. [4]=0
  25. my_array.to_string()=[ 3, 1, 2, null, 0 ]
  26. my_array=
  27. [0]=null
  28. [1]=0
  29. [2]=1
  30. [3]=2
  31. [4]=3
  32. my_array.to_string()=[ null, 0, 1, 2, 3 ]
  33. baz_obj.to_string()="fark"
  34. my_object=
  35. abc: 12
  36. foo: "bar"
  37. bool0: false
  38. bool1: true
  39. my_object.to_string()={ "abc": 12, "foo": "bar", "bool0": false, "bool1": true }