Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Last active August 12, 2020 07:28

Revisions

  1. gistlyn revised this gist Aug 5, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion main.cs
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    //All variables in top scope can be inspected in preview inspector
    //Variables in top scope can be inspected in preview inspector

    var name = "World";
    var greeting = $"Hello, {name}!";
  2. gistlyn revised this gist Aug 5, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion main.cs
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    //All variables in top scope can be inspected in the preview inspector
    //All variables in top scope can be inspected in preview inspector

    var name = "World";
    var greeting = $"Hello, {name}!";
  3. gistlyn revised this gist Jul 22, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion main.cs
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    //All variables in top scope can be inspected in the preview inspector

    var name = "World";
    var greeting = $"Hello, ${name}!";
    var greeting = $"Hello, {name}!";
  4. gistlyn revised this gist Jul 22, 2016. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion main.cs
    Original file line number Diff line number Diff line change
    @@ -1,2 +1,4 @@
    //All variables in top scope can be inspected in the preview inspector
    var greeting = "Hello, World!";

    var name = "World";
    var greeting = $"Hello, ${name}!";
  5. gistlyn revised this gist Jul 21, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion main.cs
    Original file line number Diff line number Diff line change
    @@ -1,2 +1,2 @@
    //All variables in top scope can be inspected in the Script preview
    //All variables in top scope can be inspected in the preview inspector
    var greeting = "Hello, World!";
  6. gistlyn created this gist Jul 21, 2016.
    2 changes: 2 additions & 0 deletions main.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,2 @@
    //All variables in top scope can be inspected in the Script preview
    var greeting = "Hello, World!";