diff options
author | alyx <alyx@aleteoryx.me> | 2022-06-02 17:53:39 +0000 |
---|---|---|
committer | Aleteoryx <alyx@aleteoryx.me> | 2022-06-02 17:53:39 +0000 |
commit | 721a1f74a47d88d23d868f641bb606316c9e5a58 (patch) | |
tree | 44af4b9dcef984a20f8c242b9b59010bb8c5ae43 /types.html | |
parent | c1e64bf0ccdaeb1b676f1a53967b0d0448e1ca44 (diff) | |
download | RRCUtils-721a1f74a47d88d23d868f641bb606316c9e5a58.tar.gz RRCUtils-721a1f74a47d88d23d868f641bb606316c9e5a58.tar.bz2 RRCUtils-721a1f74a47d88d23d868f641bb606316c9e5a58.zip |
homepage, typing, check June 6 changelog
Diffstat (limited to 'types.html')
-rw-r--r-- | types.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/types.html b/types.html new file mode 100644 index 0000000..6794e75 --- /dev/null +++ b/types.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width"> + <title>Document</title> + + <script src="/lib/types.js" ></script> + + <script> + console.log(new Type("int")) + console.log(new Type("List<int>")) + console.log(new Type("(int, T1)", ["T1"])) + console.log(new Type("List<(T,int)>", ["T"])) + console.log(new Type("(int|float|Vector3)")) + console.log(new Type("List<(int|float|Vector3)>")) + console.log(new Type("(List<List<(int|float|Vector3)>>|List<any>)")) + + </script> + +</head> +<body> + +</body> +</html>
\ No newline at end of file |