Skip to content

Examples

Techcraft7 edited this page Dec 25, 2020 · 10 revisions

7Sharp examples

Here are some examples of 7Sharp code to help people lean the language!

Print text of every color combination

loop (16) {
    bgColor(getLoopIndex());
    loop (16) {
        writeraw("X");
        fgColor(getLoopIndex());
    }
	write("");
}
resetColor();

Clone this wiki locally