I want to test a
code snippet
with emphasis
I want to test a
code snippet
without emphasis
#!/bin/bash | |
#+ | |
# Usage | |
# newc filename [include[.h] ...] | |
# | |
# Output | |
# Creates a file (filename) with a skeleton main function, with | |
# optional include files in the header. If the file exists in | |
# /usr/include then #include <include.h> is added, if it is not | |
# found in /usr/include, but is found in the current directory |
/* | |
check-frag filename [blocksize guess] | |
blocksize default is 4096 -- smaller and seeks take too long | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/stat.h> | |
#include <sys/fcntl.h> | |
#include <unistd.h> |
/* | |
input is 1 line with 10 cards, black first, white second | |
cards are sorted by value (suit is disregarded when sorting) | |
when tested for hand type -- they are sorted again based on the | |
order of evaluation of the hand when comparing the two, so | |
full house will put the 3 of a kind highest, then the 2 of a kind. | |
A pair will have the pair as the last two cards, and the rest | |
sorted by from lowest to highest. This makes it easy to determine | |
the winner by comparing down from the top. |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"os" | |
"sync" | |
) |
Declared calls syntax from: Graph Node
/// calls:
/// - myCall1: Contract[address].function(arg1, arg2, ...)
/// - ..
/// ```
///
/// The `address` and `arg` fields can be either `event.address` or