├── .gitignore ├── LICENSE ├── README.md └── welearn.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Object file 2 | *.o 3 | 4 | # Ada Library Information 5 | *.ali 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YCCDSZXH/welearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YCCDSZXH/welearn/HEAD/README.md -------------------------------------------------------------------------------- /welearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YCCDSZXH/welearn/HEAD/welearn.py --------------------------------------------------------------------------------