ProgrammingLanguage2020
Support page for Programming Language A/B
Please submit report to
ishii-at-cphys.s.kanazawa-u.ac.jp (replace -at- to @)
- Shortened url https://bit.ly/2okwoDM
- シラバス
- 教科書
Lecture note etc.
- You can find lecture note given by Prof. Takako Nemoto at JAIST
http://www.jaist.ac.jp/~t-nemoto/teaching/2018-2/2018-2.html
October 5, Guidance
- C言語とFortran
- テンプレート(vimの例)
例) C言語
下記を$HOME/.vim/template/c.txt (emacsなら, $HOME/.emacs.d/template/c.txt)
として保存。
#include <stdio.h> int main() { printf("hello world\n"); }
.vimrcに下記の様に書き込む。
autocmd BufNewFile *.c 0r $HOME/.vim/template/c.txt
emacsの場合, $HOME/.emacs.d/init.el
に書きの様に書き込む。
(auto-insert-mode) (setq auto-insert-directory "~/.emacs.d/template/") (define-auto-insert "\\.c$" "c.txt")