aboutsummaryrefslogtreecommitdiff
path: root/res/ok_sample.tpc
diff options
context:
space:
mode:
Diffstat (limited to 'res/ok_sample.tpc')
-rw-r--r--res/ok_sample.tpc22
1 files changed, 0 insertions, 22 deletions
diff --git a/res/ok_sample.tpc b/res/ok_sample.tpc
deleted file mode 100644
index c8d3d9d..0000000
--- a/res/ok_sample.tpc
+++ /dev/null
@@ -1,22 +0,0 @@
1/**
2 * UPEM / Compilation / Projet TPC
3 * Exemple de fichier source TPC valide
4 * Pacien TRAN-GIRARD, Adam NAILI
5 */
6
7const special = 'b';
8
9entier funky_func(entier arg) {
10 return !arg;
11}
12
13void main(void) {
14 entier ret;
15 ret = 1 + funky_func(0) * 2;
16
17 while (1) {
18 reade(ret);
19 print(ret);
20 }
21}
22