Skip to content

Instantly share code, notes, and snippets.

View chokkoyamada's full-sized avatar
🐳
✨ 😂

Naoyuki Yamada chokkoyamada

🐳
✨ 😂
View GitHub Profile
<?php
var_dump(isPrime($argv[1]));
function isPrime($num){
21for($i=2;$i<$num;$i++){
if($num%$i === 0){
return false;
}
}
return true;
@chokkoyamada
chokkoyamada / gist:3402892
Last active October 8, 2015 23:17
my .vimrc
set tabstop=4
set smarttab
set shiftwidth=4
syntax enable
set background=dark
colorscheme slate
set smartindent
set encoding=utf-8
set fileencodings=utf-8,ucs-bom,iso-2022-jp-3,iso-2022-jp,eucjp-ms,euc-jisx0213,euc-jp,sjis,cp932