Skip to content

Commit 413c00e

Browse files
authored
Merge pull request #11 from flodavid/compilateur
Imports, function calls, array and containers and more
2 parents 81d63d4 + 66c8754 commit 413c00e

93 files changed

Lines changed: 4707 additions & 759 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ install:
3333

3434
script:
3535
- make --file makefile -j2
36-
- ./bin/EZ_language_compiler tests/example.ezl -o example.run && echo -e "\nResult\n =======" ./example.run ; rm -f *.run ; echo -e "\n =======\n"
36+
- ./bin/EZ_language_compiler tests/example.ezl -o example.run; rm -f *.run ; echo -e "\n =======\n"
3737
# Launch valid tests
3838
- cd tests/
39-
- bash basic_tests.sh && echo -e "\nResults\n ======" ./*.run ; rm -f *.run ; echo -e "\n =======\n"
39+
- bash basic_tests.sh && echo -e "\nResults tests\n =======\n" && ./*.run ; rm -f *.run ; echo -e "\n =======\n"
4040

4141
after_success:
4242
# Launch other tests
43-
- bash full_tests.sh && echo -e "\nResults\n ======" ./*.run ; rm -f *.run ; echo -e "\n =======\n"
43+
- bash full_tests.sh && echo -e "\nResults\n =======\n" && ./*.run ; rm -f *.run ; echo -e "\n =======\n"
4444
- cd ../examples
45-
- bash valid_tests.sh && echo -e "\nResults\n ======" ./*.run ; rm -f *.run ; echo -e "\n =======\n"
46-
- bash unvalid_tests.sh && echo -e "\nResults\n ======" ./*.run ; rm -f *.run ; echo -e "\n =======\n"
45+
- bash valid_tests.sh && echo -e "\nResults\n =======\n" && ./*.run ; rm -f *.run ; echo -e "\n =======\n"
46+
- bash unvalid_tests.sh && echo -e "\nResults\n =======\n" && ./*.run ; rm -f *.run ; echo -e "\n =======\n"

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# EzLanguage
22

3-
[![Build Status](https://travis-ci.org/flodavid/ezlanguage.svg)](https://travis-ci.org/flodavid/ezlanguage)
3+
4+
| Travis Compilation | License | Code quality | Hit counter |
5+
| :----------------------------: | :---------------------------: | :----------------------------: | :----------------------------: |
6+
[![Build Status](https://travis-ci.org/flodavid/ezlanguage.svg)](https://travis-ci.org/flodavid/ezlanguage) | [![GPLv3 License](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/flodavid/Urbanisme/blob/master/COPYING.txt) | [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f623f84ff30f43a4b0c3a93f74ca5329)](https://www.codacy.com/app/flodavid/ezlanguage?utm_source=github.com&utm_medium=referral&utm_content=flodavid/ezlanguage&utm_campaign=Badge_Grade) | [![ghit.me](https://ghit.me/badge.svg?repo=flodavid/ezlanguage)](https://ghit.me/repo/flodavid/ezlanguage) |
47

58
Repository of a project for the EZ language compiler.
69
A simple compiler for EZ-Language
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)