This file contains hidden or 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
    
  
  
    
  | package main | |
| import ( | |
| "fmt" | |
| // "github.com/nchern/go-R/R" | |
| "io/ioutil" | |
| "os" | |
| "os/exec" | |
| "strings" | |
| "time" | 
  
    
      This file contains hidden or 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
    
  
  
    
  | tet | 
  
    
      This file contains hidden or 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
    
  
  
    
  | From http://gorevel.cn/topic/14 | |
| 1、使用刀符$访问全局变量,后面一种可以简化代码,省去了临时变量的定义 | |
| {{$user := .user}} | |
| {{range .bookings}} | |
| {{$user.Name}} | |
| {{end}} | |
| 或(推荐) | 
NewerOlder