Hello, I have started to dabble in twinbasic, but I don't know how to make it compile for x64, do I have to indicate it somewhere? my windows is 64 bits but it always shows me 32 bits, in Excel this works fine for me, what am I missing?
Code:#If Win64 Then
MsgBox "64 bits"
#Else
MsgBox "32 bits"
#End If

