Terminal control/Coloured text: Difference between revisions

Content deleted Content added
add task to aarch64 assembly raspberry pi
Thebigh (talk | contribs)
add freebasic
Line 666:
q = SetConsoleTextAttribute(hConsole, csbi%wAttributes)
end program</lang>
 
=={{header|FreeBASIC}}==
<lang freebasic>for i as uinteger = 0 to 15
color i
print "Colour "+str(i),
if i mod 4 = 3 then print
next i</lang>
 
=={{header|FunL}}==