This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int stop=5; | |
for(int i=0, i<stop;i++){ | |
std::cout << "Hello world, I'm a test!" << std::endl; // this line has been edited | |
std::cout << i << std::endl; | |
std::cout << "Added line" << std::endl; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def registers | |
{:stack [] | |
:env {} | |
:control [] | |
:dump [] | |
:backtrack [] | |
:free 0}) | |
(defn classify | |
[x] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What is this? |