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
| #include <iostream> | |
| #include <vector> | |
| #include <map> | |
| #include <string> | |
| #include <memory> | |
| #include <functional> | |
| using namespace std; | |
| // usage of auto as function return type that depends on template params |
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
| #include <iostream> | |
| #include <string> | |
| #include <cmath> | |
| #include <cstdlib> | |
| #include <sstream> | |
| using namespace std; | |
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
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <sstream> | |
| using namespace std; | |
| // ----------------------------------------------------------------------------- | |
| // used functions prototype declaration | |
| // ----------------------------------------------------------------------------- |
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
| NO_COLOR=\033[0m | |
| OK_COLOR=\033[32;01m | |
| ERROR_COLOR=\033[31;01m | |
| WARN_COLOR=\033[33;01m | |
| DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) | |
| deps: | |
| @echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" | |
| @go get -d -v ./... | |
| @echo $(DEPS) | xargs -n1 go get -d |
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
| /*jslint onevar:true, undef:true, newcap:true, regexp:true, bitwise:true, maxerr:50, indent:4, white:false, nomen:false, plusplus:false */ | |
| /*!! | |
| * JS Signals <http://millermedeiros.github.com/js-signals/> | |
| * Released under the MIT license <http://www.opensource.org/licenses/mit-license.php> | |
| * @author Miller Medeiros <http://millermedeiros.com/> | |
| * @version 0.5.3 | |
| * @build 154 (02/21/2011 08:27 PM) | |
| */ |
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
| ;----------------------------------------------------------------------------------- | |
| ; 1 - example of simple operations | |
| ;----------------------------------------------------------------------------------- | |
| ; arithmatic operations | |
| (+ 1 2) | |
| (* 2 3) | |
| (/ 8 2) | |
| (> 4 3) | |
| (= 4 6) |
NewerOlder