Go Fish: Difference between revisions

76 bytes removed ,  1 month ago
m
 
Line 245:
 
=={{header|FutureBasic}}==
Translated from FreeBasic May 5, 2024
May 5, 2024 Rich Love
Fixed intermittent hang
Also, now using && and || to be compatible with later versions of FutureBasic.
( replaces AND and OR )
<syntaxhighlight lang="futurebasic">
 
May 22 Minor update replaces || with or in the instructions.
 
<syntaxhighlight lang="futurebasic">
/*
 
Line 523 ⟶ 521:
print " On your turn, you ask the CPU For a card."
print " You must already have at least one card of a given rank to ask For more."
print " (A rank is one ||or more of any card.)"
print " If the CPU has any cards of the named rank, it must hand over all such cards,"
print " and you can then ask again."
Line 532 ⟶ 530:
print " If at any time, your hand is empty, a new card will be drawn from the pile."
print " The game ends when every book is complete,"
print " ||or there are no more cards left in the pile."
print " The player with the most books wins."
Line 811 ⟶ 809:
 
handleevents
 
</syntaxhighlight>
 
44

edits