diff options
author | pommicket <pommicket@gmail.com> | 2022-07-22 14:54:07 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-07-22 14:54:07 -0400 |
commit | 35b1b0129e8791a9412173acf3756606d0cc397d (patch) | |
tree | 6e631f6382cabf4ad2522bf4386828aaabae3347 /test.go | |
parent | 47a65f608f485af32d2df12be489146ad67839e1 (diff) |
go syntax highlighting
also :goto-line now clamps numbers < 1 and > nlines instead of rejecting them
Diffstat (limited to 'test.go')
-rw-r--r-- | test.go | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +package main + +import "fmt" + +/* +what +a +wonderful +day +*///yes + +func main() { + var x []int = make([]int, 10) + fmt.Println(x != nil) + println(`hello + world\`) + println("yes\"\\") +} |