about summary refs log tree commit diff stats
path: root/js/toy-llm/index.html
blob: beffcf670f6cb115395e4722ec713baee151915f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>toy llm</title>
    <script src="app.js"></script>
</head>
<body>
    <h1>toy llm</h1>
</body>
</html>
d contents ", sq1.typeof, " ", sq1.len, " ", sq1 doAssert cast[int](sq1[0].unsafeAddr) != 0 var sq2 = sq1 # copy of original echo "copy length and contents ", sq2.len, " ", sq2 doAssert cast[int](sq2[0].unsafeAddr) != 0 doAssert cast[int](sq1[0].unsafeAddr) != 0 test() ############################################# ### bug 12820 import tables var t = initTable[string, seq[ptr int]]() discard t.hasKeyOrPut("f1", @[]) ############################################# ### bug #12989 proc bug(start: (seq[int], int)) = let (s, i) = start let input = @[0] bug((input, 0))