diff options
| author | Jon French | 2018-05-10 12:49:38 +0100 |
|---|---|---|
| committer | Jon French | 2018-05-10 12:49:38 +0100 |
| commit | 443601a0d19907d95ed604a68403403d25ceaf73 (patch) | |
| tree | 289fa06f0583f4a2d1baec471ddc59b6ee4453e8 /doc/examples | |
| parent | 00c946d24c7f3f1cd9d5f6ef4798b72a2f7c3c16 (diff) | |
| parent | 839f239f01ce3ecb4fe91a3f542d194591bc1650 (diff) | |
Merge branch 'sail2' into mappings
Diffstat (limited to 'doc/examples')
| -rw-r--r-- | doc/examples/overload.sail | 10 | ||||
| -rw-r--r-- | doc/examples/zeros.sail | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/doc/examples/overload.sail b/doc/examples/overload.sail new file mode 100644 index 00000000..b6213cdd --- /dev/null +++ b/doc/examples/overload.sail @@ -0,0 +1,10 @@ +val print_int : int -> unit + +val print_string : string -> unit + +overload print = {print_int, print_string} + +function main() : unit -> unit = { + print("Hello, World!"); + print(4) +}
\ No newline at end of file diff --git a/doc/examples/zeros.sail b/doc/examples/zeros.sail new file mode 100644 index 00000000..7781c9ff --- /dev/null +++ b/doc/examples/zeros.sail @@ -0,0 +1,5 @@ +val zero_extend_1 : forall 'm 'n, 'm <= 'n. bits('m) -> bits('n) + +val zero_extend_2 : forall 'm 'n, 'm <= 'n. (bits('m), int('n)) -> bits('n) + +overload zero_extend = {zero_extend_1, zero_extend_2}
\ No newline at end of file |
