This is a set meal of programs created by Pop-Apple for fun :)
Maybe you can find some tasty code
If you want to add interesting codes, we are waiting for your pull request
- Python
Print('Hello World')- C++
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
}- C#
using System;
class HelloWorld
{
public static void Main()
{
Console.WriteLine("Hello World");
}
}- C
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}None
Released under MIT LICENSE