Skip to content

Commit

Permalink
play-recursion flag added
Browse files Browse the repository at this point in the history
  • Loading branch information
lainio committed Nov 5, 2024
1 parent 879543f commit 33e5472
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions samples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ var (
"mode",
"play",
"runs the wanted playground: db, play, nil, assert,"+
"\nassert-keep (= uses assert.Debug in GLS)",
"\nassert-keep (= uses assert.Debug in GLS),"+
"\nplay-recursion (= runs recursion example)",
)
isErr = flag.Bool("err", false, "tells if we want to have an error")
)
Expand All @@ -40,7 +41,7 @@ func main() {
doMain1()
case "nil2":
doMain2()
case "play":
case "play", "play-recursion":
doPlayMain()
case "assert":
doAssertMainKeepGLSAsserter(false)
Expand Down

0 comments on commit 33e5472

Please sign in to comment.