Added keywords

This commit is contained in:
Pasha Bibko
2025-07-21 18:54:25 +01:00
parent ab5fb4f342
commit d6568a8d2f
4 changed files with 47 additions and 4 deletions

View File

@@ -1 +1,19 @@
FILE 4 CONTENTS "A" GO B HERE 34 += 5 "ELLO THER"
int add(int a, int b)
{
return a + b
}
int main(void)
{
int c = add(3, 4)
if (c == 7)
{
return 0
}
# The laws of maths have been broken #
else
{
return 1
}
}