<div dir="ltr"><div dir="ltr">On Sat, Jul 6, 2019 at 10:34 AM Ben Grasset <<a href="mailto:operator97@gmail.com">operator97@gmail.com</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div>No spaces or tabs are implicitly inserted or removed by the compiler at any time. Line endings are handled via the directive syntax suggested by Michael.</div><div><br></div><div>If you wish to test the feature yourself, Florian, <a href="https://github.com/Akira13641/freepascal" target="_blank">currently I have the branch available here.</a></div><div><br></div><div>Note that it *does* now also include the requested {$modeswitch MultiLineStrings}, which must be set (in all language modes) in order to use multi-line strings anywhere.</div></div></div></blockquote><div><br></div><div>To be extra clear, also, for example, in the case of that code posted by Ryan the output looks like this:</div><div><br></div>  #version 150<br><br>  uniform sampler2D textures[8];<br>  in vec2 vertexTexCoord;<br>  in vec4 vertexColor;<br>  in float vertexUVMap;<br>  out vec4 fragColor;<br><br>  void main()<br>  {<br>    if (vertexUVMap == 255) {<br>      fragColor = vertexColor;<br>    } else {<br>      fragColor = texture(textures[int(vertexUVMap)], vertexTexCoord.st);<br>      if (vertexColor.a < fragColor.a) {<br>        fragColor.a = vertexColor.a;<br>      }<br>    }<br><br>    // TODO: testing<br>    fragColor = vec4(1,0,0,1);<br><div>  }</div><div><br></div><div>Which is to say, two spaces are present at the start of each line because they were present in the string as Ryan typed it.<br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Jul 6, 2019 at 10:34 AM Ben Grasset <<a href="mailto:operator97@gmail.com">operator97@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">On Sat, Jul 6, 2019 at 10:25 AM Florian Klämpfl <<a href="mailto:florian@freepascal.org" target="_blank">florian@freepascal.org</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
I tried to follow the thread, but one think I miss is: what are the rules for indention? Does the lines string contain<br>
spaces at the beginning of every line or not? Are they removed? How many are removed? What about tabs? Actually, this is<br>
my main concern with such multiline strings: spaces/tabs at the beginning of a line cannot be handled in an intuitive way.<br></blockquote><div><br></div><div>No spaces or tabs are implicitly inserted or removed by the compiler at any time. Line endings are handled via the directive syntax suggested by Michael.</div><div><br></div><div>If you wish to test the feature yourself, Florian, <a href="https://github.com/Akira13641/freepascal" target="_blank">currently I have the branch available here.</a></div><div><br></div><div>Note that it *does* now also include the requested {$modeswitch MultiLineStrings}, which must be set (in all language modes) in order to use multi-line strings anywhere.</div></div></div>
</blockquote></div>