12 lines
132 B
Text
12 lines
132 B
Text
|
|
/* valid nil initialization and assignment */
|
||
|
|
let
|
||
|
|
|
||
|
|
type rectype = {name:string, id:int}
|
||
|
|
var b:rectype := nil
|
||
|
|
|
||
|
|
in
|
||
|
|
|
||
|
|
b := nil
|
||
|
|
|
||
|
|
end
|