tspace.nim 262 B

1234567891011
  1. discard """
  2. output: "Successful"
  3. """
  4. # Test for the compiler to be able to compile a Nim file with spaces in the directory name.
  5. # Also test if import of a directory with a space works.
  6. import "more spaces" / mspace
  7. assert tenTimes(5) == 50
  8. echo("Successful")