Monorepo for Aesthetic.Computer
aesthetic.computer
1# kidlisp.com
2
3Simple landing page for the KidLisp programming language with the tagline "Friendly pattern programming for all".
4
5## Content
6
7The site provides:
8- Clear tagline: "Friendly pattern programming for all"
9- Brief introduction to KidLisp
10- Four simple code examples to try:
11 - Basic drawing: `(wipe navy) (ink yellow) (circle 100 100 50)`
12 - Repetition: `(wipe black) (ink lime) (repeat 10 i (box (* i 20) (* i 20) 50 50))`
13 - Transformations: `(wipe red) (scroll 5 0) (blur 1)`
14 - Random animation: `(ink cyan) (circle (wiggle width) (wiggle height) 30)`
15- Call-to-action link to aesthetic.computer to try the examples
16
17## Deployment
18
19This site is deployed via Netlify from the main `aesthetic-computer` repository.
20The domain `kidlisp.com` redirects to serve this content from `system/public/kidlisp-com.html`.
21
22## Netlify Configuration
23
24The routing is configured in `system/netlify.toml`:
25- `kidlisp.com` domain redirects are handled there
26- Static content is served from the system/public directory
27
28## Local Development
29
30To preview locally, you can open `index.html` directly in a browser or run:
31```bash
32cd kidlisp.com
33python3 -m http.server 8000
34```
35
36Then visit http://localhost:8000