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
| <link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/alertifyjs/alertify.js/v1.0.11/dist/css/alertify.css" /> | |
| <script src="https://cdn.rawgit.com/alertifyjs/alertify.js/v1.0.11/src/js/alertify.js"></script> | |
| <script src="https://unpkg.com/[email protected]/floating.js"></script> | |
| <script> | |
| console.log('hello world') | |
| </script> | |
| <noscript>Your browser either does not support JavaScript, or has it turned off.</noscript> |
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 <functional> | |
| class MemFunTest | |
| { | |
| public: | |
| bool test0() | |
| { | |
| std::cout << "[" << this <<"-test0 called]" << std::endl; | |
| return false; |
NewerOlder