Examples being added more

This commit is contained in:
Matthew Stobbs 2024-02-25 18:34:01 -07:00
parent 725239af14
commit 116130fa93
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package main
import "log"
func EmojiRunes() {
log.Println("Emojis as runes")
}

7
examples/main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "log"
func main() {
log.Println("Running the examples")
}

View File

@ -0,0 +1,7 @@
package main
import "log"
func ReallyLongRuneset() {
log.Println("Really long runeset")
}