mirror of https://github.com/Hilbis/Hilbish
chore: move comments below package declaration
parent
1689d80721
commit
71b72bbdd4
3
rl.go
3
rl.go
|
@ -1,9 +1,10 @@
|
||||||
// +build !hilbiline
|
// +build !hilbiline
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
// Here we define a generic interface for readline and hilbiline,
|
// Here we define a generic interface for readline and hilbiline,
|
||||||
// making them interchangable during build time
|
// making them interchangable during build time
|
||||||
// this is normal readline
|
// this is normal readline
|
||||||
package main
|
|
||||||
|
|
||||||
import "github.com/bobappleyard/readline"
|
import "github.com/bobappleyard/readline"
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
// +build hilbiline
|
// +build hilbiline
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
// Here we define a generic interface for readline and hilbiline,
|
// Here we define a generic interface for readline and hilbiline,
|
||||||
// making them interchangable during build time
|
// making them interchangable during build time
|
||||||
// this is hilbiline's, as is obvious by the filename
|
// this is hilbiline's, as is obvious by the filename
|
||||||
package main
|
|
||||||
|
|
||||||
import "github.com/Rosettea/Hilbiline"
|
import "github.com/Rosettea/Hilbiline"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue