package main
import (
"container/list"
"fmt"
)
func main() {
var l list.List
l.PushBack(1)
l.PushBack(2)
l.PushBack(3)
l.PushBack(4)
x := 2
for e := l.Front(); e != nil; e = e.Next() {
if x < e.Value {
fmt.Println(e.Value)
}
}
}