Starter:
- Battlefield/Miiverse
- Final Destination
- Town and City
- Lylat Cruise
- Smashville
- Duck Hunt Stage
| # Generic Makefile to help get started | |
| # Requires sh.exe on Windows. | |
| # Assumes GNUMake. | |
| # Made by Rapptz | |
| # name of final output | |
| PROGRAM_NAME := untitled | |
| # where to store the debug and release final output | |
| RELEASE_DIR := ./release |
| // The MIT License (MIT) | |
| // Copyright (c) 2014 Rapptz | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| // this software and associated documentation files (the "Software"), to deal in | |
| // the Software without restriction, including without limitation the rights to | |
| // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
| // the Software, and to permit persons to whom the Software is furnished to do so, | |
| // subject to the following conditions: |
| local tuple = require("tuple") | |
| function test(x, y, z) | |
| print(x, y, z) | |
| end | |
| function get() | |
| return 10, 11 | |
| end |
| // C++11 signal/slots | |
| #include <type_traits> | |
| #include <functional> | |
| #include <map> | |
| #include <limits> | |
| namespace signals { | |
| struct connection_key { | |
| private: | |
| connection_key() = default; |
| #!/usr/bin/env python | |
| """Python module that generates .ninja files. | |
| Some of the stuff here was borrowed from the main ninja project. | |
| However this module aims to extend the bare-bones provided with a rich | |
| python API. | |
| Note: This file is meant to be a single file for easy inclusion for existing | |
| build systems. Hence this file will be rather big. |
| import sys | |
| print(sys.argv) |
| #include <net/socket.hpp> | |
| #include <iostream> | |
| int main() { | |
| net::socket client(net::socket::ipv4, net::socket::stream); | |
| client.connect("127.0.0.1", 3667); | |
| std::cout << client.receive(16); | |
| } |
| #include <requests/request.hpp> | |
| #include <iostream> | |
| int main() { | |
| auto r = requests::get("http://www.example.com"); | |
| std::cout << r.status_code << '\n'; | |
| std::cout << r.text << '\n'; | |
| std::cout << r.url << '\n'; | |
| } |