dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

numeric_literals.go (76B)


      1 package main
      2 
      3 func main() {
      4 	1234.
      5 	hi()
      6 
      7 	-1234.
      8 	hi()
      9 
     10 	oneTwo3.
     11 		hi()
     12 }