├── .gitattributes ├── Examples ├── BigMenu │ ├── All.cpy │ └── template.cpy ├── Class │ ├── main.cpy │ └── rectangle.cpy ├── Contest problems │ ├── 897A. Scarborough Fair │ │ ├── a.cpy │ │ └── template.cpy │ ├── 897B. Chtholly's request │ │ ├── b.cpy │ │ └── template.cpy │ ├── 897C. Nephren gives a riddle │ │ ├── c.cpy │ │ └── template.cpy │ ├── 900A. Find Extra One │ │ ├── a.cpy │ │ └── template.cpy │ ├── 900B. Position in Fraction │ │ ├── b.cpy │ │ └── template.cpy │ └── 900C. Remove Extra One │ │ ├── c.cpy │ │ └── template.cpy ├── Hybrid project │ ├── cppFunction.cpp │ ├── cppFunction.h │ ├── cpyFunction.cpy │ └── main.cpp ├── Quick loop │ └── main.cpy ├── Quick print │ └── main.cpy ├── Red black tree │ ├── 1.in │ ├── 1.out │ ├── 2.in │ ├── 2.out │ ├── 3.in │ ├── 3.out │ ├── 4.in │ ├── 4.out │ ├── 5.in │ ├── 5.out │ ├── ReadMe.txt │ ├── main.cpy │ └── rntree.cpy ├── Selection Sort │ ├── main.cpy │ └── sort.cpy ├── Simple array max min │ └── main.cpy └── Simple sum │ ├── main.cpy │ └── template.cpy ├── LICENSE ├── README.md └── Source ├── Makefile ├── defines.h ├── dependenciesMapper.cpp ├── dependenciesMapper.h ├── directoryHandler.cpp ├── directoryHandler.h ├── extensionHandler.cpp ├── extensionHandler.h ├── file.cpp ├── file.h ├── firstReplaces.cpp ├── firstReplaces.h ├── headerGen.cpp ├── headerGen.h ├── line.cpp ├── line.h ├── main.cpp ├── sourceGen.cpp ├── sourceGen.h ├── string.cpp └── string.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/.gitattributes -------------------------------------------------------------------------------- /Examples/BigMenu/All.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/BigMenu/All.cpy -------------------------------------------------------------------------------- /Examples/BigMenu/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/BigMenu/template.cpy -------------------------------------------------------------------------------- /Examples/Class/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Class/main.cpy -------------------------------------------------------------------------------- /Examples/Class/rectangle.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Class/rectangle.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/897A. Scarborough Fair/a.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/897A. Scarborough Fair/a.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/897A. Scarborough Fair/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/897A. Scarborough Fair/template.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/897B. Chtholly's request/b.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/897B. Chtholly's request/b.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/897B. Chtholly's request/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/897B. Chtholly's request/template.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/897C. Nephren gives a riddle/c.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/897C. Nephren gives a riddle/c.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/897C. Nephren gives a riddle/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/897C. Nephren gives a riddle/template.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/900A. Find Extra One/a.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/900A. Find Extra One/a.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/900A. Find Extra One/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/900A. Find Extra One/template.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/900B. Position in Fraction/b.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/900B. Position in Fraction/b.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/900B. Position in Fraction/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/900B. Position in Fraction/template.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/900C. Remove Extra One/c.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/900C. Remove Extra One/c.cpy -------------------------------------------------------------------------------- /Examples/Contest problems/900C. Remove Extra One/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Contest problems/900C. Remove Extra One/template.cpy -------------------------------------------------------------------------------- /Examples/Hybrid project/cppFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Hybrid project/cppFunction.cpp -------------------------------------------------------------------------------- /Examples/Hybrid project/cppFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Hybrid project/cppFunction.h -------------------------------------------------------------------------------- /Examples/Hybrid project/cpyFunction.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Hybrid project/cpyFunction.cpy -------------------------------------------------------------------------------- /Examples/Hybrid project/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Hybrid project/main.cpp -------------------------------------------------------------------------------- /Examples/Quick loop/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Quick loop/main.cpy -------------------------------------------------------------------------------- /Examples/Quick print/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Quick print/main.cpy -------------------------------------------------------------------------------- /Examples/Red black tree/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/1.in -------------------------------------------------------------------------------- /Examples/Red black tree/1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/1.out -------------------------------------------------------------------------------- /Examples/Red black tree/2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/2.in -------------------------------------------------------------------------------- /Examples/Red black tree/2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/2.out -------------------------------------------------------------------------------- /Examples/Red black tree/3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/3.in -------------------------------------------------------------------------------- /Examples/Red black tree/3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/3.out -------------------------------------------------------------------------------- /Examples/Red black tree/4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/4.in -------------------------------------------------------------------------------- /Examples/Red black tree/4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/4.out -------------------------------------------------------------------------------- /Examples/Red black tree/5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/5.in -------------------------------------------------------------------------------- /Examples/Red black tree/5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/5.out -------------------------------------------------------------------------------- /Examples/Red black tree/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/ReadMe.txt -------------------------------------------------------------------------------- /Examples/Red black tree/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/main.cpy -------------------------------------------------------------------------------- /Examples/Red black tree/rntree.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Red black tree/rntree.cpy -------------------------------------------------------------------------------- /Examples/Selection Sort/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Selection Sort/main.cpy -------------------------------------------------------------------------------- /Examples/Selection Sort/sort.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Selection Sort/sort.cpy -------------------------------------------------------------------------------- /Examples/Simple array max min/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Simple array max min/main.cpy -------------------------------------------------------------------------------- /Examples/Simple sum/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Simple sum/main.cpy -------------------------------------------------------------------------------- /Examples/Simple sum/template.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Examples/Simple sum/template.cpy -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/README.md -------------------------------------------------------------------------------- /Source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/Makefile -------------------------------------------------------------------------------- /Source/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/defines.h -------------------------------------------------------------------------------- /Source/dependenciesMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/dependenciesMapper.cpp -------------------------------------------------------------------------------- /Source/dependenciesMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/dependenciesMapper.h -------------------------------------------------------------------------------- /Source/directoryHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/directoryHandler.cpp -------------------------------------------------------------------------------- /Source/directoryHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/directoryHandler.h -------------------------------------------------------------------------------- /Source/extensionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/extensionHandler.cpp -------------------------------------------------------------------------------- /Source/extensionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/extensionHandler.h -------------------------------------------------------------------------------- /Source/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/file.cpp -------------------------------------------------------------------------------- /Source/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/file.h -------------------------------------------------------------------------------- /Source/firstReplaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/firstReplaces.cpp -------------------------------------------------------------------------------- /Source/firstReplaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/firstReplaces.h -------------------------------------------------------------------------------- /Source/headerGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/headerGen.cpp -------------------------------------------------------------------------------- /Source/headerGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/headerGen.h -------------------------------------------------------------------------------- /Source/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/line.cpp -------------------------------------------------------------------------------- /Source/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/line.h -------------------------------------------------------------------------------- /Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/main.cpp -------------------------------------------------------------------------------- /Source/sourceGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/sourceGen.cpp -------------------------------------------------------------------------------- /Source/sourceGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/sourceGen.h -------------------------------------------------------------------------------- /Source/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/string.cpp -------------------------------------------------------------------------------- /Source/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrsperanza/CPY/HEAD/Source/string.h --------------------------------------------------------------------------------