| Real Name | Username |
|---|---|
| Matt DiBello | mdibello |
| Jesse Brink | brinkj96 |
| Will Kiley | sanfordWill |
| Bob Nolte | BobNolte |
| Richard McCormack | DenialAdams |
| Ethan Powers | badplayer1 |
| Gianluca Cassano | BaldKicker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (module | |
| (import "wasi_unstable" "fd_write" (func $fd_write (param i32 i32 i32 i32) (result i32))) | |
| (memory 1) | |
| (export "memory" (memory 0)) | |
| (data 0 (i32.const 16) "\n") | |
| (data 0 (i32.const 18) "true") | |
| (data 0 (i32.const 22) "false") | |
| (func $print (param $str_offset i32) (param $str_len i32) | |
| (i32.store (i32.const 0) (local.get $str_offset)) | |
| (i32.store (i32.const 4) (local.get $str_len)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::io; | |
| fn main() { | |
| let mut input = String::new(); | |
| loop { | |
| io::stdin().read_line(&mut input) | |
| .expect("Failed to read line"); | |
| input = input.trim().to_string(); | |
| piglatinize(&mut input); | |
| println!("{}", input); |