dotemacs

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

multiline_comment.go (376B)


      1 package multilinecomment
      2 
      3 /* Some comment here
      4 	with my very own
      5 		indentation as it pleases me */
      6 
      7 func main() {
      8 	if true {
      9 		// code
     10 	}
     11 }
     12 
     13 func _() {
     14 	/*   foo
     15 	 * bar
     16 	 */
     17 
     18 	/* abc
     19 	123
     20 	   def
     21 	     lol
     22 	*/
     23 
     24 	/*
     25 	   abc
     26 	     - def
     27 	*/
     28 
     29 	/*
     30 	   hello
     31 	there */
     32 
     33 	/*
     34 	   hello
     35 	   there */
     36 
     37 	/*
     38 	   foo
     39 	*/
     40 
     41 	/*
     42 	  foo
     43 	*/
     44 
     45 	/*
     46 	 foo
     47 	*/
     48 
     49 	/* foo
     50 	asd
     51    asd
     52 	   asd
     53 	*/
     54 }