Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List of QB64 Constants?
#1
Is there a list of QB64 constants, like _PI=3.14..?
Also, 1/0 gives INF and -1/0 gives -INF.  Are there INF and -INF constants?
This code is just some experimenting (some garbage in the 2nd line of output - no problem).


Code: (Select All)
DefLng I
DefSng F
On Error GoTo zerr

Print _Pi
fhi = 1 / 0
flo = -1 / 0
Print "div by 0 - float:", fhi; flo
ihi = 1 / 0
ilo = -1 / 0
Print "div by 0 - long integer:", ihi, ilo

Print "Sqr(-1)= "; Sqr(-1)

zerr:
Print Chr$(13) + "Err"; Err; "in line"; _ErrorLine
End
Reply


Messages In This Thread
List of QB64 Constants? - by dcromley - 05-05-2022, 04:49 PM
RE: List of QB64 Constants? - by Pete - 05-05-2022, 05:31 PM
RE: List of QB64 Constants? - by bplus - 05-05-2022, 05:40 PM
RE: List of QB64 Constants? - by Pete - 05-05-2022, 05:46 PM
RE: List of QB64 Constants? - by dcromley - 05-05-2022, 08:31 PM
RE: List of QB64 Constants? - by SMcNeill - 05-06-2022, 07:53 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  List of file sound extensions eoredson 17 2,759 12-27-2024, 04:30 PM
Last Post: hsiangch_ong
  Making the content list of files inside a Zip ? euklides 13 2,401 02-08-2024, 03:52 PM
Last Post: euklides
  File menu recent list eoredson 15 3,154 11-08-2023, 02:20 PM
Last Post: bplus
  Scalable List SMcNeill 2 948 08-13-2022, 10:30 AM
Last Post: SMcNeill

Forum Jump:


Users browsing this thread: 1 Guest(s)