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
package main | |
import ( | |
"fmt" | |
"github.com/andlabs/ui" | |
) | |
func main() { | |
ui.Main(func() { |
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
import UIKit | |
import PlaygroundSupport | |
import UIKit | |
import GLKit | |
import OpenGLES | |
import XCPlayground | |
import PlaygroundSupport | |
import OpenGLES |
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 <boost/log/core.hpp> | |
#include <boost/log/expressions.hpp> | |
#include <boost/log/sinks/text_file_backend.hpp> | |
#include <boost/log/sources/record_ostream.hpp> | |
#include <boost/log/sources/severity_logger.hpp> | |
#include <boost/log/trivial.hpp> | |
#include <boost/log/utility/setup/common_attributes.hpp> | |
#include <boost/log/utility/setup/console.hpp> | |
#include <boost/log/utility/setup/file.hpp> |
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 <X11/Xlib.h> | |
#include <X11/Xutil.h> | |
#include <X11/Xos.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <locale.h> | |
#include <assert.h> | |
Display *dpy; | |
Window win; |