Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Bjorn.Hagen/inf-222-v-24-obligatory-2-skeleton
  • M.Fjeldstad/inf-222-v-24-obligatory-2-skeleton
  • Rolf.Glomsrud/INF222-Obligatory2-Skeleton
  • Mikhail.Barash/inf-222-v-24-obligatory-2-skeleton
  • Mahmod.Mohamed/inf-222-v-24-obligatory-2-skeleton
  • Kevinas.Pliuskus/inf-222-v-24-obligatory-2-skeleton
  • Markus.Halsvik/inf-222-v-24-obligatory-2-skeleton
  • torje.sylta/inf-222-v-24-obligatory-2-skeleton
  • Jens.Brown.Eriksen/inf-222-v-24-obligatory-2-skeleton
  • samuel.sjoen/inf-222-v-24-obligatory-2-skeleton
  • Magnus.Aune/inf-222-v-24-obligatory-2-skeleton
  • V.Larsen/inf-222-v-24-obligatory-2-skeleton
  • Lauritz.Angeltveit/inf-222-v-24-obligatory-2-skeleton
13 results
Show changes
Commits on Source (1)
......@@ -18,7 +18,7 @@ function isDefined<T>(x: string, env: Environment<T>): boolean {
}
function declare<T>(x: string, v: T, env: Environment<T>): void {
// 1. Add a variable represented by the parameter `x` into the environment represented by the parameters `env`.
// 1. Add a variable represented by the parameter `x` into the environment represented by the parameter `env`.
// TODO: YOUR CODE HERE // Hint: You can find which methods to use at: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
}
......