Skip to content

Jaywencoder/Nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nodejs

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

这是高阶标题(效果和一级标题一样)

这是次阶标题(效果和二级标题一样)

  1. 第一点
  2. 第二点
  3. 第三点
  • 这是无序列表项目
  • 这是无序列表项目
  • 这是无序列表项目

呵呵 * 嘉嘉 - 嘻嘻 - 吼吼 - 嘎嘎 + 桀桀

  • 哈哈

这是一级引用

这是二级引用

这是三级引用

这是一级引用

/** 
   * nth element in the fibonacci series. 
   * @param n >= 0 
   * @return the nth element, >= 0. 
   */
 function fib(n) { 
     var a = 1, b = 1; 
     var tmp; 
     while (--n >= 0) { 
         tmp = a;
         a += b; 
         b = tmp;
     }
     return a; 
 }
 document.write(fib(10));

void main() { printf("Hello, Markdown."); }

这就是行内链接:baidu

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages