| 1234567891011121314151617181920212223 |
- package main
- import (
- "chathub/chfoot/core"
- "fmt"
- "github.com/etlibgo/et"
- "time"
- )
- func main() {
- fmt.Println("foot began")
- fmt.Println(et.StrPadLeft("et pad left", "0", 20))
- core.AppPrepare()
- core.AppStart()
- for core.AppIsRunning() {
- time.Sleep(time.Duration(100) * time.Millisecond)
- }
- fmt.Println("foot ended")
- }
|