Created
January 15, 2014 12:40
-
-
Save trsqxyz/8435488 to your computer and use it in GitHub Desktop.
どうやってコードを書けばいいのかな? というときに役立つかもしれない howdoi ref: http://qiita.com/trsqxyz@github/items/d668bc78621c70dcfd51
This file contains 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
% howdoi format dict python | |
geopoint = {'latitude':41.123,'longitude':71.091} | |
print('{latitude} {longitude}'.format(**geopoint)) | |
%howdoi install homebrew | |
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)" | |
%howdoi print golang | |
return fmt.Sprintf("at %v, %s", e.When, e.What) | |
%howdoi print lisp | |
CL-USER> (format t "~{~{~A ~}~%~}" | |
'((X X X) (X X X X X X) (X X X X X X X X X))) | |
X X X | |
X X X X X X | |
X X X X X X X X X |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment