-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b0d015
commit ca76733
Showing
5 changed files
with
372 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
package main | ||
import "github.com/mallvielfrass/fmc" | ||
|
||
import ( | ||
"github.com/mallvielfrass/fmc" | ||
) | ||
|
||
func main() { | ||
colors := [10]string{"yst", "ybt", "rst", "rbt", "gst", "gbt", "bst", "bbt", "wst", "wbt"} | ||
for _, value := range colors { | ||
fmc.Printf("color: #"+value+value+" %s\n", "test") | ||
} | ||
colors := [10]string{"yst", "ybt", "rst", "rbt", "gst", "gbt", "bst", "bbt", "wst", "wbt"} | ||
for _, value := range colors { | ||
fmc.Printf("color: #"+value+value+" %s\n", "test") | ||
} | ||
|
||
fmc.Printf("#ybt I#rbt love#bbt Go#gbt!\n") | ||
fmc.Printf("#ybt %s#rbt %s#bbt %s#gbt%s\n", "I", "love", "Go", "!") | ||
fmc.Print("#ybt lol") | ||
fmc.Printfln("#ybt %s", "I") | ||
fmc.Println("#bbt Println") | ||
fmc.Printf("#yst I#ybt love#bbt Go#gbt!\n") | ||
fmc.Printf("#ybt %s#rbt %s#bbt %s#gbt%s\n", "I", "love", "Go", "!") | ||
fmc.Println("#ybt lol") | ||
fmc.Printfln("#ybt %s", "I") | ||
fmc.Println("#bbt Println") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.