Code: Select all
h$ = "this"+
"that"+
"there"
Now try with
Code: Select all
ProcedureReturn "this"+
"that"+
"there"
Code: Select all
h$ = "this"+
"that"+
"there"
Code: Select all
ProcedureReturn "this"+
"that"+
"there"
Not sure about that. a lot of what I consider bugs are not.
Code: Select all
procedurereturn( "this"+
Code: Select all
Procedure.s FuncName()
ProcedureReturn "this"+
"that"+
"there"
EndProcedure
Debug FuncName()
Maybe it's IDE dependent (I'm using 6.02b3) -- but the indentation doesn't look right. it should be under "this"AZJIO wrote: Wed May 10, 2023 4:12 pm works for me (asm and с compiler)Code: Select all
Procedure.s FuncName() ProcedureReturn "this"+ "that"+ "there" EndProcedure Debug FuncName()
The ide DOES indent the continuation. The issue is it shout NOT indent but should align this line.jassing wrote: Wed May 10, 2023 5:04 pm Maybe it's IDE dependent (I'm using 6.02b3) -- but the indentation doesn't look right. it should be under "this"
Just to be clear, it's not that the code doesn't work - it's that the ide doesn't indent the continuation.