+ 3
After designing it, they write a program to either turn it into the same program in another language (compiler) or to read and execute what the program says line-by-line (interpreter).
2nd Mar 2018, 7:38 PM
Jacob Pembleton
Jacob Pembleton - avatar
+ 2
for beginner, try this in C++. #include <iostream> #define _start int main(){ #define SET uint8_t #define ADD(a, b) a + b #define PUT std::cout<< #define _end retrun 0;} _start SET a = 2; SET b = 4; SET c = ADD(a, b); PUT c _end Hopefully this works, just did it freestyle
2nd Mar 2018, 8:40 PM
怌ļ¼Øļ¼”ļ¼°ļ¼°ļ¼¹ ļ¼“ļ¼Æ ļ¼Øļ¼„ļ¼¬ļ¼°ć€
怌ļ¼Øļ¼”ļ¼°ļ¼°ļ¼¹ ļ¼“ļ¼Æ ļ¼Øļ¼„ļ¼¬ļ¼°ć€ - avatar