新技能√

√ New Tech Get... is a website which records my "新技能√".

Welcome

| Comments

搭建octopress

搭建主要参考的是如下几篇文章,这里就不再赘述安装过程了。

但是请注意一点,GitHub把pages的网页都转到了*.github.io的域名上了,因此在创建repo时要注意一下。


下面是一些随便的测试

测试一下Javascript
1
alert('hello world~!');
测试一下Python
1
print "hello world~!"
测试一下Scala
1
2
3
object chen {
  println("Hell world~!")
}
测试一下C#
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namesapce N1
{
  class App
  {
      public static void Main(string[] args)
      {
          console.WriteLine("Hello World~! :)");
      }
  }    
}
测试一下C++
1
2
3
4
5
6
#include <iostream>

int main(int argc, char *argv[]) {
  std::cout << "Hi~! World~!\n";
  return 0;
}

Comments