φ(..)メモメモ
tmp.clj
;; 普通の割り算
(/ 9 2) ; 9/2
;; 商だけ欲しい
(quot 9 2) ; 4
;; 剰余だけ欲しい
(rem 9 2) ; 1
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
φ(..)メモメモ
;; 普通の割り算
(/ 9 2) ; 9/2
;; 商だけ欲しい
(quot 9 2) ; 4
;; 剰余だけ欲しい
(rem 9 2) ; 1
Register as a new user and use Qiita more conveniently
Go to list of users who liked