Skip to content

Instantly share code, notes, and snippets.

View andersnicolaimagnussen's full-sized avatar

Anders Nicolai Magnussen andersnicolaimagnussen

  • Grimstad
View GitHub Profile
package com.example.geoquiz
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.util.Log
import android.view.View
import android.widget.Button
import android.widget.ImageButton
import android.widget.TextView
import android.widget.Toast
package com.company;
public class DobbelListeTab
{
private int led = 0;
private int start = -1;
private int[] Neste = new int[12];
private int[] Forrige = new int[12];
private int[] Verdi = new int[12];
using System;
namespace bst
{
public class BinaryTree
{
private Node Root;
public BinaryTree()
{
namespace bst
{
public class BinaryTree
{
private Node Root;
public BinaryTree()
{
Root = new Node();
Root.Value = -1;
#ifndef ASSIGNMENT_3_1_APP_H
#define ASSIGNMENT_3_1_APP_H
#include "menu.h"
class App
{
public:
App()
import React from "react";
import ReactDOM from "react-dom";
import Hello from "./Hello";
ReactDOM.render(
<Hello name="World" />,
document.getElementById("app")
);
const webpack = require('webpack');
const path = require('path');
const APP_DIR = path.resolve(__dirname, 'src');
const BUILD_DIR = path.resolve(__dirname, 'build');
const PUBLIC_DIR = path.resolve(__dirname,'public');
const config = {
entry: APP_DIR + '/HelloWorld.js',
devServer: {