- Dock
- 最近使ったアプリケーションを Dock に表示: uncheck
- Siri
- Siri に頼むを有効にする: uncheck
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data Term | |
| = TmTrue | |
| | TmFalse | |
| | TmIf Term Term Term | |
| | TmZero | |
| | TmSucc Term | |
| | TmPred Term | |
| | TmIsZero Term | |
| deriving Show |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CC = gcc | |
| CFLAGS = -std=c99 -O2 | |
| LDFLAGS = -lm | |
| LIBS = | |
| INCLUDE = -I$(SRC_DIR) | |
| APP_NAME = App_Name | |
| SRC_DIR = src | |
| OBJ_DIR = build | |
| SRC = $(wildcard $(SRC_DIR)/*.c) |