Metadata-Version: 2.1
Name: every-hello-tools-zs
Version: 1.0.0
Summary: this package is fun package,just how to use different software Language write hello world 
Home-page: https://github.com/sklfihggczx/every_hello_tools
Author: sklfihggczx
Author-email: zsdching1026@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

这是个有趣的包，
输入语言，就能返回对应hello world的写法
比如：
ch=Choose()
ch.choose="c"
ch.print_data()

result:
#include<stdio.h>
    int main(void) {
        printf("Hello World!
");
        return 0;
}

ch=Choose()
ch.choose="java"
ch.print_data()

result:
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}
