docs: align function syntax and cleanup docker config

This commit is contained in:
rafa-ruiz 2026-03-05 11:57:29 -08:00
parent 8379033900
commit 7839793eff
2 changed files with 1 additions and 54 deletions

View File

@ -1,53 +0,0 @@
# Documentation
*.md
documentation/
# Build and dependency files
Makefile
*.pyc
__pycache__/
*.egg-info/
dist/
build/
# Development and testing
.venv/
venv/
env/
.pytest_cache/
.coverage
# Git and version control
.git/
.gitignore
.gitattributes
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Environment files
.env
.env.local
.env.*.local
# Docker files (no copy Docker files into the image)
Dockerfile
docker-compose.yaml
# CI/CD
.github/
.gitlab-ci.yml
# Temporary files
*.tmp
*.log
scratches/
# Node modules (if any)
node_modules/
npm-debug.log

View File

@ -1,6 +1,6 @@
## Function Construction
In AVAP™, similar to Python, functions are defined using the keyword `def` , followed by the function name and its parameters in parentheses. The function definition ends with a colon ( `:` ), followed by the block of code that forms the function body, indented with four spaces.
In AVAP™, similar to Python, functions are defined using the keyword `function` , followed by the function name and its parameters in parentheses. The function definition ends with a ( `{` ), followed by the block of code that forms the function body, and closed by (`}`).
### Defining a function in AVAP™