Skip to content
On this page

helloworld.cpp

cpp
#include <iostream>

int main() {
    std::cout <<
        []() {
            return []() {
                return []() {
                    return []() {
                        return []() {
                            return []() {
                                return []() {
                                    return []() {
                                        return []() {
                                            return []() {
                                                return []() {
                                                    return []() {
                                                        return []() {
                                                            return []() {
                                                                return []() {
                                                                    return []() {
                                                                        return []() {
                                                                            return []() {
                                                                                return []() {
                                                                                    return "Hello World!";
                                                                                };
                                                                            };
                                                                        };
                                                                    };
                                                                };
                                                            };
                                                        };
                                                    };
                                                };
                                            };
                                        };
                                    };
                                };
                            };
                        };
                    };
                };
            };
        }()()()()()()()()()()()()()()()()()()()
              << std::endl;
}

See on GitHub

Last Updated: 15/1/2567 13:25:21 (UTC+7)

Released under the MIT License