Include "wfont.bb"Function DebLog (s$) ;this belongs to 'service.bb', but cut out of there to reduce code If debMode = 1 Then fname$ = "debug.log" If FileSize(fname$) = 0 Then file = WriteFile (fname$) Else file = OpenFile (fname$) EndIf SeekFile (file, FileSize(fname$)) WriteLine (file, s$) CloseFile (file) DebugLog (s$) Else DebugLog (s$) EndIfEnd FunctionGraphics 200,140,32,2ClsColor 255, 255, 255Clstahoma24black.WFont = WFontNew ("tahoma24black.fnt")WFontText (tahoma24black, "Hello World!", 45, 55)FlipWaitKeyEnd