Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View sylvaticus's full-sized avatar

Antonello Lobianco sylvaticus

View GitHub Profile
(def registers
{:stack []
:env {}
:control []
:dump []
:backtrack []
:free 0})
(defn classify
[x]
@sylvaticus
sylvaticus / test
Last active August 29, 2015 14:02
test
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;
}