codebook 0.3.38

A code-aware spell checker library (dependency for codebook-lsp)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main

import (
	"fmt"
)

func main() {
	// I'm bad at speling alice
	fmt.Println("Hello, Wolrd!")
	var alicz = "Alicz"
	fmt.Println("Hello, " + alicz)
	var rsvp = "RSVP"
	fmt.Println("Hello, " + rsvp)
}

func mispeledFuncion() string {
	return ""
}