mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Further overhaul of package line comments.
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
/*
|
||||
package ansi implements constant references to many widely-supported ANSI
|
||||
escape codes, primarily used in terminal emulators for enhanced graphics, such
|
||||
as colors, text styling, and animated displays.
|
||||
Constant references to many widely-supported `ANSI` escape codes.
|
||||
Primarily used in terminal emulators for enhanced graphics, such as colors, text styling, and animated displays.
|
||||
|
||||
For example, you can print out a line of cyan text like this:
|
||||
fmt.println(ansi.CSI + ansi.FG_CYAN + ansi.SGR + "Hellope!" + ansi.CSI + ansi.RESET + ansi.SGR)
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
/*
|
||||
This package is for interacting with the command line interface of the system.
|
||||
*/
|
||||
package terminal
|
||||
@@ -1,3 +1,4 @@
|
||||
// Interaction with the command line interface (`CLI`) of the system.
|
||||
package terminal
|
||||
|
||||
import "core:os"
|
||||
|
||||
Reference in New Issue
Block a user