Archiverse Internet Archive
Huu SquareFingers
アメリカ
誕生日非公開
ゲームの腕前-
利用したゲーム機ニンテンドー3DS
フレンド-/100
フォロー-
フォロワー-
投稿数0
そうだね数8
取得日時

プロフィールコメントは非公開に設定されています。

投稿のみ 投稿と返信
前のページ(最近)
1 2
次のページ(過去)
返信[109]
親投稿
Huu SquareFingers
Associative arrays.
0そうだね
プレイ済み
返信[57]
親投稿
Huu SquareFingers
Follow-up to my post of 12/11/2015 11:23 PM: The desired effect can apparently be achieved by using CHR$(10) at the end of every line except the last one, then use CHR$(13), e.g. after KEY 5,"CLS"+CHR$(10)+"PRINT 55"+CHR$(13)
0そうだね
プレイ済み
返信[53]
親投稿
Huu SquareFingers
SORT on an array with zero elements gives an error. DIM Z$[0]:SORT Z$ Out of range(SORT:1)
2そうだね
プレイ済み
返信[96]
親投稿
Huu SquareFingers
The ability to load a specified part, not all, of a text file into a string variable.
1そうだね
未プレイ
返信[85]
親投稿
Huu SquareFingers
Allow arrays of arrays.
1そうだね
未プレイ
返信[84]
親投稿
Huu SquareFingers
A way for a DATA string value to include the 'quote' character CHR$(34).
0そうだね
未プレイ
返信[83]
親投稿
Huu SquareFingers
A way to tell if the currently-running instance of a program was launched from the SMILE button or not.
0そうだね
未プレイ
返信[41]
親投稿
Huu SquareFingers
Anything after CHR$(13) in a KEY string is ignored, e.g. after KEY 5,"CLS"+CHR$(13)+"PRINT 55"+CHR$(13), pressing key 5 will clear the screen but not print 55.
0そうだね
未プレイ
返信[40]
親投稿
Huu SquareFingers
In Direct mode, RUN cannot be on the same line as another command, e.g. PROJECT "P":LOAD "L":RUN causes Syntax Error (RUN 0 at the end also gives Syntax Error).
0そうだね
未プレイ
返信[79]
親投稿
Huu SquareFingers
I'm going to say it again: Documentation. It is not only a shame, it is disrespectful to your coding team. They have worked and tried to make things good and easy for BASIC programmers. Not to document their efforts is to devalue their work and also to disrespect the users.
1そうだね
未プレイ
返信[78]
親投稿
Huu SquareFingers
Currently, LOAD and SAVE can only work inside the current project. Request: remove this restriction for both LOAD and SAVE. If that is too big, then, smaller request: remove this restriction for LOAD.
0そうだね
未プレイ
返信[77]
親投稿
Huu SquareFingers
Documentation of all the features of the language. It is a shame there are things like the KEY() function, which someone took the trouble to code, but no-one can benefit from, except by accident.
0そうだね
未プレイ
返信[74]
親投稿
Huu SquareFingers
Allow the use of the PROJECT command within a program. Even if that means a mandatory dialog.
0そうだね
未プレイ
返信[35]
親投稿
Huu SquareFingers
X32KX4JP VAL("200") gives 200. VAL("200 dogs") gives 0. VAL("200 dollars") gives 200.
0そうだね
未プレイ
返信[67]
親投稿
Huu SquareFingers
A guarantee that, at least when multiplayer starts, the 'terminal ID' numbers (MPRECV 'SID', MPSTAT, MPNAME$, MPGET), are 0 and 1 (when 2 consoles are in the initial connection), 0 1 and 2 (for 3 consoles), or 0 1 2 and 3 (for 4 consoles).
0そうだね
未プレイ
返信[64]
親投稿
Huu SquareFingers
When one console performs two MPSETs, the effects will not be observed (with MPGET) on a second console in the opposite order.
0そうだね
未プレイ
返信[63]
親投稿
Huu SquareFingers
Clear specification on when an MPRECV buffer overflow will occur - or, at least, a clear guarantee of how MPRECV may be used without causing an overflow, something like "The receive buffer is guaranteed not to overflow so long as the number of MPSENDs does not exceed 15 more than the number of successful MPRECVs".
0そうだね
未プレイ
返信[62]
親投稿
Huu SquareFingers
Clear specification on when an MPSEND buffer overflow will occur - or, at least, a clear guarantee of how MPSEND may be used without causing an overflow, something like "MPSEND is guaranteed not to cause a send buffer overflow if it is used no more than 4 times in 5 frames".
0そうだね
未プレイ
返信[1]
親投稿
Huu SquareFingers
There's nothing wrong with what you have done, but just so you know, there's no need for two commands READ C$ ARRAY$[I]=C$ ARRAY$[I] can be considered just another string variable, so it is more common to use READ ARRAY$[I]
0そうだね
未プレイ
返信[58]
親投稿
Huu SquareFingers
For _*EVERY*_ circumstance in which an error may occur while running a program, ensure there is some way to programmatically check beforehand whether the error would occur - e.g. there is a way to check for 1D array index out of bounds, using LEN, but LOAD "DAT:DATFILE",DATARRAY will cause an error if DATARRAY has the wrong number of dimensions, and I cannot check this before getting the error.
0そうだね
未プレイ