Skip to content

Commit

Permalink
readme: correct indent in a hallo-world example
Browse files Browse the repository at this point in the history
  • Loading branch information
gucio321 committed Nov 13, 2024
1 parent b650f94 commit 433f915
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,32 +57,32 @@ Compared to other Dear ImGui golang bindings, giu has the following features:
package main

import (
"fmt"
"fmt"

g "github.com/AllenDang/giu"
g "github.com/AllenDang/giu"
)

func onClickMe() {
fmt.Println("Hello world!")
fmt.Println("Hello world!")
}

func onImSoCute() {
fmt.Println("Im sooooooo cute!!")
fmt.Println("Im sooooooo cute!!")
}

func loop() {
g.SingleWindow().Layout(
g.Label("Hello world from giu"),
g.Row(
g.Button("Click Me").OnClick(onClickMe),
g.Button("I'm so cute").OnClick(onImSoCute),
),
)
g.SingleWindow().Layout(
g.Label("Hello world from giu"),
g.Row(
g.Button("Click Me").OnClick(onClickMe),
g.Button("I'm so cute").OnClick(onImSoCute),
),
)
}

func main() {
wnd := g.NewMasterWindow("Hello world", 400, 200, g.MasterWindowFlagsNotResizable)
wnd.Run(loop)
wnd := g.NewMasterWindow("Hello world", 400, 200, g.MasterWindowFlagsNotResizable)
wnd.Run(loop)
}
```

Expand Down

0 comments on commit 433f915

Please sign in to comment.