Tag Archives: WordPress

SyntaxHighlighter Evolved TAG Format

HTML

 <html>
<head>
<title>タイトル</title>
<link href="css/default.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/design.css" rel="stylesheet" type="text/css" media="all" />
</head>
<!-- タグにインデントを適用することはできない模様。 -->
<body>
本文
</body>
</html>

Ruby

# 階乗を求めるメソッド
# Program to find the factorial of a number
 # Save this as fact.rb

 def fact(n)
   if n == 0
     1
   else
     n * fact(n-1)
   end
 end

 puts fact(ARGV[0].to_i)