- Keep essential information within 500 lines (now 395 lines) - Maintain important syntax examples and development principles - Move detailed information to appropriate docs files: - Development practices → docs/guides/development-practices.md - Testing guide → docs/guides/testing-guide.md - Claude issues → docs/tools/claude-issues.md - Add proper links to all referenced documentation - Balance between minimal entry point and practical usability
15 lines
202 B
Plaintext
15 lines
202 B
Plaintext
// LLVM 11.2 minimal smoke: core ops only (Const/BinOp/Compare/Branch/Return)
|
|
|
|
static box Main {
|
|
main() {
|
|
local x, y
|
|
x = 1
|
|
y = 2
|
|
if (x < y) {
|
|
x = x + y
|
|
}
|
|
return x
|
|
}
|
|
}
|
|
|