| |
6R6
Registered: Feb 2002 Posts: 245 |
Petcat Basic
Hello,
I'm using petcat.exe (comes with WinVice)
for some basic coding.
Anyone know if its possible to insert comments
in my source ?
As it works now petcat compiles my comments to basic
code aswell.
GRG
|
|
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
WTF are you doing basic? is that you knoeki ? =D
seriously, just use some tool for preprocessing.... grep comes to mind, or even cpp. |
| |
null Account closed
Registered: Jun 2006 Posts: 645 |
Quote: WTF are you doing basic? is that you knoeki ? =D
seriously, just use some tool for preprocessing.... grep comes to mind, or even cpp.
yes, I hacked GRG's account to spread BASIC propaganda :D
------------------------------------
http://zomgwtfbbq.info |
| |
JackAsser
Registered: Jun 2002 Posts: |
Quote: Hello,
I'm using petcat.exe (comes with WinVice)
for some basic coding.
Anyone know if its possible to insert comments
in my source ?
As it works now petcat compiles my comments to basic
code aswell.
GRG
Yup, I agree with Groepaz. Use cpp and get all the goodies like #include, #ifdef, ## operators, // operator, /* */ operator etc.. |
| |
iAN CooG
Registered: May 2002 Posts: 3196 |
Quote: Hello,
I'm using petcat.exe (comes with WinVice)
for some basic coding.
Anyone know if its possible to insert comments
in my source ?
As it works now petcat compiles my comments to basic
code aswell.
GRG
I rarely use petcat for basic de/tokenizing, always got problems with it, so bastext became my preferred one. And no, you can't add comment mixing them in the source, only before the line
start tok64 destination_file.prg
and after the ending line
stop tok64
|
| |
6R6
Registered: Feb 2002 Posts: 245 |
Hehe.. :)
tok64.exe seems to support comments with ;
but thanks anyway..
GRG |
| |
6R6
Registered: Feb 2002 Posts: 245 |
Ian : You're right bastext seems to be working better.. |