Friday, May 01, 2009
pixilang putc example
I started to mess around with pixilang. They have a working sequencer and drum machine but that is realy more than I need, what I am after is the graphics and then running an external file.. they also have less than I need in the docs / examples when they say refer to the c docs for file operations.. this is my simple demo/example for putc (to write a charecter to a file)
pFile=fopen ("myfile.txt","w")
fputc ( 't', pFile )
fclose (pFile)
writing a line like this takes a bit of work...
pFile=fopen ("myfile.txt","w")
fputc ( 't', pFile )
fclose (pFile)
writing a line like this takes a bit of work...