its based on arrays embedded in arrays
[
"hello world"
]
this program is just a string that says hello world. it is now at location [0]
def parse_direction_name: { | |
name: ., | |
ordinal: ( | |
if . == "N" then 0 | |
elif . == "E" then 1 | |
elif . == "S" then 2 | |
elif . == "W" then 3 | |
else error("invalid rover direction: " + .) | |
end | |
), |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"regexp" | |
"sort" | |
"strconv" | |
"strings" | |
) |
package main | |
import ( | |
"fmt" | |
"regexp" | |
"strconv" | |
"strings" | |
) | |
func main() { |
package main | |
import ( | |
"flag" | |
"fmt" | |
"github.com/bwmarrin/discordgo" | |
"github.com/sirupsen/logrus" | |
"strconv" | |
"strings" | |
) |
#include <stdio.h> | |
#include <stdlib.h> | |
typedef struct node { | |
int value; | |
struct node * next; | |
} node_t; | |
node_t * node_new(void) { | |
node_t * new_node = NULL; |
import ( | |
"fmt | |
"net/http" | |
"bytes" | |
) | |
type statsForm struct { | |
ServerCount int `json:"server_count"` | |
} |
package main | |
import ( | |
"github.com/bwmarrin/discordgo" | |
"flag" | |
log "github.com/Sirupsen/logrus" | |
"fmt" | |
"time" | |
"errors" | |
) |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<!-- this section is details about your project --> | |
<groupId>me.monitor</groupId> | |
<artifactId>monitoringbotv04</artifactId> | |
<version>1.0</version> <!-- this is the version of your project, can be set to anything --> |