Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/solareenlo/c_tutorial

C言語とBazelとgitとGitHubの練習
https://github.com/solareenlo/c_tutorial

Last synced: 4 days ago
JSON representation

C言語とBazelとgitとGitHubの練習

Awesome Lists containing this project

README

        

# c_tutorial
Udemy講座のC言語練習とBazelとgitとgithubに慣れるためのリポジトリ。

## Usage
```bash
# bazel で build する.
bazel build //main:hello-world
> INFO: Analysed target //main:hello-world (3 packages loaded, 25 targets configured).
> INFO: Found 1 target...
> Target //main:hello-world up-to-date:
> bazel-bin/main/hello-world
> INFO: Elapsed time: 4.330s, Critical Path: 0.19s
> INFO: 2 processes: 2 darwin-sandbox.
> INFO: Build completed successfully, 3 total actions

# bazel-bin/main の中に build し終わったバイナリデータがある.
bazel-bin/main/hello-world
> Hello World.
> ABC
> 日本語でも大丈夫
```