Install the latest published compiler quickly on supported Unix-like systems.
curl -fsSL https://wave-lang.dev/install.sh | bash -s -- latestWave 프로그래밍 언어 공식 홈
Wave는 명시적인 동작, 네이티브 출력, 들여다볼 수 있는 컴파일러 단계, 그리고 CLI 도구부터 저수준 시스템 작업까지 이어지는 표준 라이브러리를 중심으로 하나의 언어 생태계를 만들고 있습니다.
$ curl -fsSL https://wave-lang.dev/install.sh | bash -s -- latest
$ wavec run hello.wave
Hello, Wave
$ wavec build kernel.wave --debug-wave=tokens,ast,ir
[tokens] ok
[ast] ok
[ir] ok
[codegen] native binary ready설치
공식 사이트는 첫 번째 실용 질문에 바로 답해야 합니다. Wave를 어떻게 설치하는지, 어떻게 실행하는지, 컴파일러가 무엇을 하는지 어떻게 확인 하는지 보여줘야 합니다.
Install the latest published compiler quickly on supported Unix-like systems.
curl -fsSL https://wave-lang.dev/install.sh | bash -s -- latestCompile and execute a Wave source file from the command line.
wavec run examples/hello.waveInspect compiler stages while developing the language or debugging behavior.
wavec build app.wave --debug-wave=tokens,ast,ir예제
fun main() {
println("Hello, Wave");
}구조
Language reference, compiler options, standard library, WSON, and ecosystem documents.
/learnA guided path from installation to syntax, project structure, and practical next steps.
/ecosystemThe surrounding Wave stack: Vex, Whale, WSON, and the standard library direction.
/releasesRelease channels, installation targets, roadmap links, and published release notes.
/communityDiscord, GitHub, translation participation, and contribution guidance for the project.
철학
Wave aims to cover systems work, tooling, networking, hardware-facing code, and more without forcing the project into unrelated languages.
Inspection modes for tokens, AST, IR, machine code, and output keep the language honest about what it does.
The language keeps core behavior explicit while the ecosystem grows capability through std, Vex, Whale, and WSON.
로드맵과 릴리스
The home page should not bury project status. It should point directly to what Wave is building next and what users can install today.
Follow the staged path from pre-beta through release candidate in the project roadmap.
Release notes live on GitHub so the official site can point clearly to what has shipped.
The install script supports the latest channel and explicit version pinning for reproducible setups.
번역
Wave already has multi-language structure in the site. Crowdin should be part of the official front door so contributors can help keep the website and docs current across languages.
웹사이트와 문서 번역에 참여하고, 낙후된 페이지를 개선하며, 더 많은 커뮤니티가 Wave를 자연스럽게 접할 수 있도록 도와주세요.