Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #8 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 In such exceptional case, the Null value represent the root directory. Because the absolute paths begin with a slash. If he were in the middle of the path, really do

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #9 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 Sorry, I correct myself, Null value and "&/" represents the root directory. That is what I meant. -- You received this message because this project is configured to

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Updates: Status: WontFix Comment #7 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 `Null` is not a path, so `Null &/ "alma"` means nothing. I just chose to ignore the null values instead of raising errors. -

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #6 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 That's why it would be logical to me that: Null &/ "alma" enter the following value: "/alma" Because this is a path. But no problem, just didn't understand at first

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #5 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 I don't understand what you thought the '&/' operator should do. It is really an operator that aims at concatenating path elements. -- You received this mess

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #4 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 Let's just say good, because there is no double slash: Print "/" &/ "alma" Output: /alma Just the "rootdir" value cannot be Null. After all, it really is so logi

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #3 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 &/ is for concatenating directory paths and file names. A void string is ignored because it cannot be a directory or a file name. -- You received this messag

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #2 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 Normally: Print "alma" &/ "szilva" Output: alma/szilva But if "alma" is Null, the output doesn't contain a slash. Example: Dim rootdir As String Dim subdir

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #1 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 I don't see any problem with those codes. -- You received this message because this project is configured to send all issue notifications to this address. Y

[Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Status: New Owner: Labels: Version-3.5.0 Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 The Null constant is represent a zero length string, but t