├── screenshots ├── screen01.PNG └── screen02.PNG ├── HelloWorld.HC ├── HelloWorld2.HC ├── HolyASM.HC └── README.md /screenshots/screen01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrettotte/TempleOS-and-HolyC/HEAD/screenshots/screen01.PNG -------------------------------------------------------------------------------- /screenshots/screen02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrettotte/TempleOS-and-HolyC/HEAD/screenshots/screen02.PNG -------------------------------------------------------------------------------- /HelloWorld.HC: -------------------------------------------------------------------------------- 1 | // Hello World in HolyC 2 | 3 | U0 Hello(){ 4 | "Hello World\n"; //String by itself calls printf 5 | } 6 | Hello; -------------------------------------------------------------------------------- /HelloWorld2.HC: -------------------------------------------------------------------------------- 1 | // Testing functions with parameters 2 | 3 | U0 Test1(U8 *st){ 4 | Print(st); 5 | } 6 | 7 | U0 Test2(U8 *st){ 8 | "%s", st; 9 | } 10 | 11 | Test1("Hello World !\n"); 12 | Test2("Hello World !!\n"); 13 | 14 | U0 Test3(U8 *st){ 15 | "" st; 16 | } 17 | 18 | Test3("Hello World !!!\n"); 19 | 20 | U0 Test4(...){ 21 | I64 i; 22 | for (i=0; i Include -> spacebar 30 | * OR ```#include "C:/FilePath/SomeFile.HC.Z";``` 31 | 32 | 33 | ## Sources 34 | * Intro + Changing Wallpaper in TempleOS https://www.youtube.com/watch?v=JIw4vPdv5X4 35 | * Terry Davis Hello World https://www.youtube.com/watch?v=CE41J-DZlq8 36 | * TempleOS Download http://templeos.org/ 37 | 38 | ## Screenshots 39 | ![(https://github.com/barrettotte/TempleOS-and-HolyC/blob/master/screenshots/screen01.PNG](https://github.com/barrettotte/TempleOS-and-HolyC/blob/master/screenshots/screen01.PNG) 40 | 41 | ![(https://github.com/barrettotte/TempleOS-and-HolyC/blob/master/screenshots/screen02.PNG](https://github.com/barrettotte/TempleOS-and-HolyC/blob/master/screenshots/screen02.PNG) 42 | --------------------------------------------------------------------------------