This commit is contained in:
Gabriel Augendre 2021-08-16 08:45:57 +02:00
parent 9ce79c5e8f
commit a1170dfc70
2 changed files with 9 additions and 7 deletions

View file

@ -1,9 +1,11 @@
package main package main
import "fmt" import (
import "os" "bufio"
import "bufio" "fmt"
import "strings" "os"
"strings"
)
const VALUE = "value" const VALUE = "value"
const SERIES = "series" const SERIES = "series"

View file

@ -1,11 +1,11 @@
package main package main
import ( import (
"bufio"
"fmt" "fmt"
"os"
"strings"
) )
import "os"
import "bufio"
import "strings"
type Record struct { type Record struct {
floor, bars, beam string floor, bars, beam string