Posted to tcl by hypnotoad at Fri Sep 16 21:46:45 GMT 2016view raw

  1. wish% file normalize /tcl
  2. O:/tcl
  3. wish% set tcl_patchLevel
  4. 8.6.6
  5. wish% cd c:/
  6. wish% file normalize /tcl
  7. C:/Tcl
  8. wish% parray tcl_platform
  9. tcl_platform(byteOrder) = littleEndian
  10. tcl_platform(engine) = Tcl
  11. tcl_platform(machine) = intel
  12. tcl_platform(os) = Windows NT
  13. tcl_platform(osVersion) = 6.1
  14. tcl_platform(pathSeparator) = ;
  15. tcl_platform(platform) = windows
  16. tcl_platform(pointerSize) = 4
  17. tcl_platform(threaded) = 1
  18. tcl_platform(user) = tne
  19. tcl_platform(wordSize) = 4
  20. wish% file normalize //tcl
  21. C:/Tcl
  22. wish% file normalize //does/not/exist
  23. //does/not/exist
  24. wish%