2017年11月14日 星期二

測試第一篇文章

這是內容

class Voila {
public:
  // Voila
  static const string VOILA = "Voila";

  // will not interfere with embedded tags.
}
def sendMail(subject):
    print(subject)

sendMail("Hello")
/**
 * 讀取 word 範本與 POI 產生報告
 * 
 * @author Rocky
 */
public class WordReportDemo01 {

 public static void main(String[] args) throws Exception {
  
  new WordReportDemo01().execute();
 }
 
 private void execute() throws Exception {
  
  Student student1 = new Student("子瑜", 79, "做的非常好");
  Student student2 = new Student("小明", 89, "記得多運動");

  createWordFile(student1);
  createWordFile(student2);
 }
}