The Sharp PC-1350 is extremely similar to the 1360 model,
and even somewhat faster, actually. It does have a very comfortable, fully alphanumeric QWERTY
keyboard and a wonderful 4x24 character alphanumeric and graphic (150x32) display (including lowercase characters).
This is the machine I use the most, together with an HP-15C. Its large display makes it a pleasure to enter and edit program lines and expressions to be evaluated. You can recover any line/expression once entered/computed, edit it via cursor keys, and reevaluate it again with utmost easy. In case there's some error, a message appears and the cursor will be positioned at the exact place where the error was detected, which is extremely fast and convenient.
I took this machine with me during 2002's summer holidays and wrote a fully graphic version of my HP-41C Othello for it, showing the full 8x8 board on the display and allowing the user to enter moves by navigating said board with the cursor keys. This machine is so comfortable to use that I did write the whole program directly on it, from scratch, without ever needing pencil or paper, the 4-line display was more that enough to avoid losing sight of the whole 'picture'.
In short, I would heartily recommend this machine to anyone and everyone. If you've got one, you can find a lot of information and some software for this machine here, including some graphic games written in machine language.
In case you're wondering how programming looks like in this machine, here's an excerpt from my Othello program, namely parts of the subroutine that sets up the graphic board and
the one that checks if it's legal for you to pass. You can see in the listing instances of nested FOR..NEXT loops, subroutine calling, multiple statements per line, logical decisions, printing user-defined graphics in binary form at a given position,
string arrays, string handling, etc.:
240 GOSUB 140: PRINT "Setting up board...";
245 FOR X=3 TO 31 STEP 4: FOR Y=2 TO 30 STEP 4: PSET (X,Y)
246 NEXT Y: NEXT X
250 M=45, N=55, B(44)=-1, B(54)=1, A=-1, H=44
252 GOSUB 435: IF U LET M=55, N=45
255 B(M)=-1, B(N)=1, H=M: GOSUB 435
257 A=1, H=54: GOSUB 435: H=N: GOSUB 435
260 GCURSOR (36,15)
262 GPRINT "1C701C00705070007040700028282800787878780028"
265 GCURSOR (38,22)
268 GPRINT "7C1830187C007C545C0028282800784848780028"
269 RETURN
270 L=LEN C$(0)-K, C$(1)=LEFT$(C$(0),K-1)
275 C$(0)=RIGHT$(C$(0),L), C$(0)=C$(1)+C$(0): RETURN
280 GOSUB 140: PRINT "Checking your pass": K=1
285 S=ASC MID$(C$(0),K,1): IF ABS B(S) GOSUB 270: GOTO 300
290 A=1, R=1: GOSUB 95: IF N RETURN
BTW, in case any of you are interested, I'll make this program freely available online in the very near future, as soon as I get some free time to set up a web page for it.
My original Othello program for the HP-41C was featured in PPC Technical Notes, circa 1981, and a 'version 2' appears in the PPC Journal as well, though you can find it online at Gene's excellent site.
Best regards from V.