Quick actions

cmd+k|ctrl+k

Navigation

Languages

ATS Reference Type Example

Snippet info

Language

Ats

Visibility

public

Author

steinwaywhw

Created

2016-06-22T14:38:10Z

Updated

2016-06-22T14:38:10Z

#include "share/atspre_staload.hats"


implement main0 () = () where {
   val a = ref<int> 10
   
   val _ = $showtype a // ref(int)
   val _ = $showtype !a // int
   
   val _ = println! !a 
   
   val _ = !a := 20
   val _ = println! !a
}
INFO