Skip to content

Instantly share code, notes, and snippets.

View DenialAdams's full-sized avatar
🌵
(⌐■_■)

Richard McCormack DenialAdams

🌵
(⌐■_■)
View GitHub Profile
@DenialAdams
DenialAdams / 2021League.md
Last active September 6, 2021 22:40
2021 Fantasy League Rules
Real Name Username
Matt DiBello mdibello
Jesse Brink brinkj96
Will Kiley sanfordWill
Bob Nolte BobNolte
Richard McCormack DenialAdams
Ethan Powers badplayer1
Gianluca Cassano BaldKicker
@DenialAdams
DenialAdams / comparison_ops.wast
Created July 16, 2020 00:12
Generated by rolandc
(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))
@DenialAdams
DenialAdams / pig-latin
Created November 17, 2018 17:43 — forked from goderich/pig-latin
A small program that takes a word (String) as input and translates it into Pig Latin
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);