2.2 version
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
2.2 version
Function VAL will be implemented, for compatibility purposes.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 2.2 version
Recursion with function calls will be available.
-
- Posts: 814
- Joined: Tue Apr 09, 2013 12:23 pm
- My devices: iPhone,iPad
Windows - Location: Groningen, Netherlands
- Flag:
Re: 2.2 version
Terrific!Mr. Kibernetik wrote:Recursion with function calls will be available.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 2.2 version
Manual will be available when version will be finished.borisbelfer wrote:Where is the manual?
-
- Posts: 5
- Joined: Sat Mar 23, 2013 2:58 am
Re: 2.2 version
а инструкция на предыдущую версию где?
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 2.2 version
В самой программе есть инструкцияborisbelfer wrote:а инструкция на предыдущую версию где?
-
- Posts: 814
- Joined: Tue Apr 09, 2013 12:23 pm
- My devices: iPhone,iPad
Windows - Location: Groningen, Netherlands
- Flag:
Re: 2.2 version
В режиме редактирования, нажать маленькую книгу в правом верхнем углу. Руководство появитсяborisbelfer wrote:а инструкция на предыдущую версию где?
LOL, Henk
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 2.2 version
All labels will be local.
Debugging will be implemented. This will look like that:
on command OPTION DEBUG ON extra button will appear on top toolbar. When pressing this button at runtime, program execution will suspend and debug window will appear. On this debug window there will be a full list of all variables indicating their current values. Also, when in debug mode program crashes, debug window will appear automatically.
Debugging will be implemented. This will look like that:
on command OPTION DEBUG ON extra button will appear on top toolbar. When pressing this button at runtime, program execution will suspend and debug window will appear. On this debug window there will be a full list of all variables indicating their current values. Also, when in debug mode program crashes, debug window will appear automatically.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: 2.2 version
BREAK command for interrupting FOR loops will be implemented. It will be used like this:
FOR N = 0 TO 10
IF N = 5 THEN BREAK N
NEXT N
BREAK will interrupt selected FOR loop.
FOR N = 0 TO 10
IF N = 5 THEN BREAK N
NEXT N
BREAK will interrupt selected FOR loop.