spacewasm

(★ 1,493)

A flight-compliant WebAssembly interpreter.

파일 탐색기

  • .gitignore
  • AI_POLICY.md
  • Cargo.lock
  • Cargo.toml
  • CONTRIBUTING.md
  • LICENSE
  • Makefile
  • NOTICE
  • README.md
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

cargo test

설명 보기 ▼

Execute the unit and integration tests of a Rust package.

cargo {{[t|test]}} {{test_name}}

Only run tests containing a specific string in their names:

cargo {{[t|test]}} -- --test-threads {{count}}

Set the number of simultaneous running test cases:

cargo {{[t|test]}} {{[-r|--release]}}

Test artifacts in release mode, with optimizations:

🔍

clang

설명 보기 ▼

C, C++, Objective-C 소스 파일을 컴파일. 수정 없이 GCC 대체(drop-in replacement)로 사용할 수 있음.
LLVM의 일부.
더 많은 정보: <https://clang.llvm.org/docs/ClangCommandLineReference.html>.

clang {{path/to/source1.c path/to/source2.c ...}} {{[-o|--output]}} {{path/to/output_executable}}

여러 소스 파일을 하나의 실행 파일로 컴파일:

clang {{path/to/source.c}} -Wall {{[-o|--output]}} {{output_executable}}

모든 오류 및 경고 출력 활성화:

clang {{path/to/source.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{path/to/output_executable}}

일반적인 경고 표시, 디버그 심볼 포함, 디버깅에 영향을 주지 않는 최적화 적용:

🔍

hello

설명 보기 ▼

"Hello, world!", "hello, world" 또는 사용자 정의 가능한 텍스트를 출력.
더 많은 정보: <https://www.gnu.org/software/hello/manual/hello.html#Invoking-hello>.

hello

"Hello, world!" 출력:

hello {{[-t|--traditional]}}

전통적인 유형인 "hello, world"를 출력:

hello {{[-g|--greeting]}} "{{greeting_text}}"

문자 메시지 출력:

// repository documentation