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
#ifndef LINKER_PE_SECTION_GENERATOR_BASE_HPP | |
#define LINKER_PE_SECTION_GENERATOR_BASE_HPP | |
#pragma once | |
#include <iostream> | |
#include <string> | |
#include <unordered_map> | |
#include <boost/range/adaptors.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 <stdlib.h> | |
#include <string.h> | |
#ifndef GUARD_USERNAME | |
/* !!input your username!!! | |
Ex. | |
# define GUARD_USERNAME "s1210999" | |
*/ | |
# define GUARD_USERNAME "s0000000" | |
#endif |
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
def main(): int | |
{ | |
print( "hello, bunchou lang!!!" ); | |
test(); | |
return 0; | |
} | |
def test(): void | |
{ |
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
In file included from prog.cc:7: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/include/qi.hpp:16: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/qi.hpp:14: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/action.hpp:14: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/action/action.hpp:14: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/meta_compiler.hpp:15: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/domain.hpp:18: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/support/context.hpp:18: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/support/nonterminal/expand_arg.hpp:20: | |
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/support/string_traits.hpp:16: |
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
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/support/string_traits.hpp:16:0, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/support/nonterminal/expand_arg.hpp:20, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/support/context.hpp:18, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/domain.hpp:18, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/meta_compiler.hpp:15, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/action/action.hpp:14, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/action.hpp:14, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi.hpp:14, | |
from /usr/local/boost-1.55.0/include/boost/spirit/include/qi.hpp:16, | |
from prog.cc:7: |
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
In file included from /usr/local/boost-1.55.0/include/boost/spirit/home/support/string_traits.hpp:16:0, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/support/nonterminal/expand_arg.hpp:20, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/support/context.hpp:18, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/domain.hpp:18, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/meta_compiler.hpp:15, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/action/action.hpp:14, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi/action.hpp:14, | |
from /usr/local/boost-1.55.0/include/boost/spirit/home/qi.hpp:14, | |
from /usr/local/boost-1.55.0/include/boost/spirit/include/qi.hpp:16, | |
from prog.cc:7: |
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> | |
#ifndef BOOST_SPIRIT_USE_PHOENIX_V3 | |
# define BOOST_SPIRIT_USE_PHOENIX_V3 | |
#endif | |
#include <boost/spirit/include/qi.hpp> | |
#include <boost/fusion/include/adapt_struct.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
auto const r = qi::int_ % qi::lit( ',' ); |
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
auto const r = qi::as<std::vector<int>>()[ qi::int_ % qi::lit( ',' ) ]; |
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
def main(): int | |
{ | |
print( "hello, bunchou lang on Linux!!!bunbun!\n" ); | |
test1(); | |
test_while(); | |
test_while_if(); | |
test_scope(); | |
return 0; | |
} |