Bug #8
closed
Right$()=, Left$()= and Mid$()= Causing compiler to hang, leaving process running.
Added by Anonymous almost 5 years ago.
Updated over 4 years ago.
Description
As tiltle, =Right$(), =Left$(), =Mid$() work fine.
- Affected version set to 0.9.2.5
- Target version changed from 0.9.2.5 to 0.9.2.6
- Status changed from New to Resolved
- Target version changed from 0.9.2.6 to 0.9.3
Could you give me a piece of code and the awaited result, for validating by testing ?
- Target version changed from 0.9.3 to 0.9.5
Hop!
#manifest:"pc"
#fullScreen:false
#fps:false
#splashScreen:false
A$ = "Hello AMOS"
Right$( A$, 4 ) = "AOZ "
Print A$
A$ = "Hello AMOS"
Left$( A$, 7 ) = "Goodbye"
Print A$
A$ = "Hello AMOS"
Mid$( A$, 7, 18 ) = "AOZ, see you later aligator!"
Print A$
But there was a crash in the compiler if you used Left$ or Right$ with THREE parameters... Fixed.
EDIT (spaces were removed by Redmine)
#manifest:"pc"
#fullScreen:false
#fps:false
#splashScreen:false
A$ = "Hello AMOS"
Right$( A$, 4 ) = "AOZ "
Print A$
A$ = "Hello . AMOS"
Left$( A$, 7 ) = "Goodbye"
Print A$
A$ = "Hello .. . . . . . . . . AMOS"
Mid$( A$, 7, 18 ) = "AOZ, see you later aligator!"
Print A$
Tu write AOZ code into Redmine :
- one blank line
- one line with 3 back-quotes followed by AOZ
- lines with your code
- one line with 3 back-quotes alones
- one blank line
With it you won't lose spaces.
Follow this link for real example on how to add code into markdown : https://aozmine.25.re/help/fr/wiki_syntax_markdown.html
- Status changed from Resolved to Closed
Result for #8#note-7 is :
Hello AOZ
Goodbye AMOS
Hello AOZ, see you later AMOS
It works.
Also available in: Atom
PDF