Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email
?
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
About
Team
Rules
Stats
Status
Sitemap
Chat
Downloads
Forum
News
Our Projects
Major Community Projects
Recent Posts
Unread Posts
Replies
Tools
SourceCoder3
Other Things...
Omnimaga Radio
TI-83 Plus ASM File Unsquisher
Z80 Conversion Tools
IES TI File Editor
Free RAM areas
Comprehensive Getkeyr table
URL Shortener
Online Axe Tilemap Editor
Help
Contact Us
Change Request
Report Issue/Bug
Team
Articles
Members
View the memberlist
Search For Members
Buddies
Login
Register
Omnimaga
»
Forum
»
Calculator Community
»
TI Calculators
»
TI-BASIC
»
A test did not resolve true or false. What does this mean?
« previous
next »
Print
Pages: [
1
]
Go Down
Author
Topic: A test did not resolve true or false. What does this mean? (Read 4093 times)
0 Members and 1 Guest are viewing this topic.
Java
LV1
Newcomer (Next: 20)
Posts: 7
Rating: +0/-0
A test did not resolve true or false. What does this mean?
«
on:
May 02, 2020, 06:14:24 pm »
Here’s my code...
Define whatsmyname()
Prgm
Disp “you’re “,name
RequestStr “would you like a name change?”,n
If yes Then
RequestStr “New name:”,name,0
Else
Text “ok, fair enough.”,0
Don’t judge me please. I’m new to programming and This is my first program.
Logged
Xeda112358
they/them
Moderator
LV12
Extreme Poster (Next: 5000)
Posts: 4704
Rating: +719/-6
Calc-u-lator, do doo doo do do do.
Re: A test did not resolve true or false. What does this mean?
«
Reply #1 on:
May 03, 2020, 10:25:45 am »
You need something like:
Code:
[Select]
If n="yes" Then
Because you are telling Request to store the input string to variable n.
Also, you can post code in [code]<your code here>[/code]
Logged
My pastebin
|
Pokémon Amber
|
Grammer Programming Language
|
BatLib Library
|
Jade Simulator
|
Zeda's Hex Opcodes
|
FileSyst Library
|
CopyProg
|
TPROG
|
GroupRead
|
Lbl Read/Write
|
Z80 Floating Point Routines
(
z80float on GitHub
)|
Z80 Optimized Routines Repository
Java
LV1
Newcomer (Next: 20)
Posts: 7
Rating: +0/-0
Re: A test did not resolve true or false. What does this mean?
«
Reply #2 on:
May 03, 2020, 10:50:36 am »
Thank you very much! 5 stars right here...
Logged
Print
Pages: [
1
]
Go Up
« previous
next »
Omnimaga
»
Forum
»
Calculator Community
»
TI Calculators
»
TI-BASIC
»
A test did not resolve true or false. What does this mean?