1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 12:00:34 +02:00

Fix type error (#4196)

This commit is contained in:
Bernard Kolobara
2022-01-03 17:12:06 +01:00
committed by GitHub
parent 772f8ba1cd
commit 9f1e178ce8

View File

@@ -42,7 +42,7 @@ contributors:
;; To set them to a value, we can use <type>.const:
(local.set $int_32 (i32.const 16))
(local.set $int_32 (i64.const 128))
(local.set $int_64 (i64.const 128))
(local.set $float_32 (f32.const 3.14))
(local.set $float_64 (f64.const 1.28))
)