Post Reply 
New beta version 4/16
04-16-2021, 03:03 PM (This post was last modified: 04-16-2021 04:16 PM by compsystems.)
Post: #2
RE: New beta version 4/16
Hi

A: The simulator still has the problem that on certain occasions the keys get "stuck"., Usually it is the [space], [dot], [shift], [alpha] keys.

B: The button Load file on the history view, closes the application.

C: In the following prg
I think that in previous firmware it was not necessary to use EVAL cmd, also the output shows an x ​​at the end, why? and it is not appending the number 1

PHP Code:
export prg00()
begin
  local x
l1;
  
l1:=[0];
  for 
x from 1 to 100 do
     
l1:= append(eval(l1), x); // l1:= append(l1, x);
  
end;
  return(
l1);
end

HOME MODE prg00() [enter]
[0,2,...,95,96,97,98,99,100,x] // (2021 04 13)
[0,₁,₂,₃,₄,₅,...,95,96,97,98,99,100] // (2021 04 16)
CAS MODE prg00() [enter]
[0,₁,₂,₃,₄,₅,...,95,96,97,98,99,101] // (2021 04 16)

CAS VERSION
PHP Code:
#cas
  
prg01():=
  
l1:=[0];
  for 
x from 1 to 100 do
    
l1:= append(l1x);
  
end;
  return(
l1);
#end 

CAS MODE prg01() [enter]
table()

E: When creating a CAS type program, it is not placing the template
PHP Code:
#cas
    
functionName():=
    
BEGIN
       
return 0;
    
END;
#end 

---------------------

Request:

In the program editor, [Shift][Prg][Edit][More] add a SELECT submenu:

6: Encript
7: Select
_₁: All
_₂: Copy code
_₃: Paste code
_₄: Clear code
_₅: Indent

This allows you to quickly copy a menu code from an external text editor.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: New beta version 4/16 - compsystems - 04-16-2021 03:03 PM
RE: New beta version 4/16 - dg1969 - 04-16-2021, 07:38 PM
RE: New beta version 4/16 - froehlic - 04-16-2021, 09:10 PM
RE: New beta version 4/16 - Archanus - 04-16-2021, 09:14 PM
RE: New beta version 4/16 - BINUBALL - 04-16-2021, 10:39 PM
RE: New beta version 4/16 - Guenter Schink - 04-16-2021, 09:49 PM
RE: New beta version 4/16 - rprosperi - 04-17-2021, 01:57 AM
RE: New beta version 4/16 - toml_12953 - 04-17-2021, 02:25 AM
RE: New beta version 4/16 - Kevin Ouellet - 04-17-2021, 11:34 AM
RE: New beta version 4/16 - jonmoore - 04-17-2021, 02:04 PM
RE: New beta version 4/16 - toml_12953 - 04-17-2021, 04:03 PM
RE: New beta version 4/16 - ggauny@live.fr - 04-17-2021, 12:44 PM
RE: New beta version 4/16 - ggauny@live.fr - 04-17-2021, 03:06 PM
RE: New beta version 4/16 - C.Ret - 04-17-2021, 03:32 PM
RE: New beta version 4/16 - Eric Rechlin - 04-18-2021, 05:04 AM
RE: New beta version 4/16 - C.Ret - 04-18-2021, 06:11 AM
RE: New beta version 4/16 - Tyann - 04-18-2021, 04:34 PM
RE: New beta version 4/16 - Dougggg - 04-18-2021, 06:47 PM
RE: New beta version 4/16 - Dougggg - 04-19-2021, 03:56 PM
RE: New beta version 4/16 - akmon - 04-18-2021, 09:13 PM



User(s) browsing this thread: 1 Guest(s)