' Enhanced Hello World Example ' eBASIC Compiler example ' ' This version of "Hello world" uses WHILE..WEND ' It prints the text 10 times, then ends ' We're using a 16F877 at 16MHz ' insert your MCU and clock here #device "16f877" #clock 16000000 Hello con "Hello world!" C var byte Main: c = 0 while (c < 10) debug hello, CR pause 1000 c = c + 1 wend END