{build,wasmserve}: use wasmserve, drop apple_pie

This commit is contained in:
Ali Chraghi 2022-09-14 18:41:40 +04:30 committed by Stephen Gutekanst
parent ebb4b9c2fe
commit 5be9f04d85
18 changed files with 747 additions and 133 deletions

View file

@ -0,0 +1,7 @@
const std = @import("std");
pub fn main() void {
var x: i16 = 1;
x += 1;
std.testing.expect(x == 2) catch unreachable;
}