Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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の練習
- Host: GitHub
- URL: https://github.com/solareenlo/c_tutorial
- Owner: solareenlo
- Created: 2018-09-09T04:18:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-01T10:11:29.000Z (almost 6 years ago)
- Last Synced: 2024-11-08T02:46:27.228Z (about 2 months ago)
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
> 日本語でも大丈夫
```