Skip to content

Commit

Permalink
change println() to fmt.Println()
Browse files Browse the repository at this point in the history
  • Loading branch information
benceluzsinszky committed Aug 27, 2024
1 parent 299434f commit edbdf04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package main

import (
"bufio"
"fmt"
"os"
)

Expand All @@ -12,5 +13,5 @@ func main() {

// Your code here

println("your output here")
fmt.Println("your output here")
}

0 comments on commit edbdf04

Please sign in to comment.