Skip to content

Instantly share code, notes, and snippets.

Soft Volleyball Main Competition Rules

I. Facilities and Equipment

1. Court

  1. The court is a rectangle measuring 13.40m x 6.10m, surrounded by a rectangular free zone at least 2m wide.

  2. The court is defined by two sidelines and two end lines, with a center line connecting the two sidelines directly below the net, dividing the court into two equal halves.

.parent
{ height: 100%
; display: flex
; justify-content: center
; align-items: center
}
image :
List (Attribute msg)
-> { src : String, description : String }
-> Element msg
img :
List (Attribute msg)
-> List (Html msg)
-> Html msg
div : List (Attribute msg) -> List (Html msg) -> Html msg
text : String -> Html msg
function add(a) {
return function(b) {
return a + b;
}
}
add = a => b => a + b // a => b => a + b
add(1) // b => a + b
add(1)(2) // 3
add a b = a + b
proc() {
proc1();
proc2();
proc3();
}