This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package guessinggame; | |
| import java.util.Random; | |
| import java.util.Scanner; | |
| public class GuessingGame { | |
| public static void main(String[] args) { | |
| Scanner scan = new Scanner(System.in); | |
| System.out.println("********************************"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #r @"..\..\lib\NAudio\NAudio.dll" | |
| #load "MiscConsts.fs" | |
| #load "Enums.fs" | |
| #load "WaveFunctions.fs" | |
| #load "NAudioWaveStreamSource.fs" | |
| #load "Player.fs" | |
| #load "Player.net.fs" | |
| #load "IO.fs" | |
| open System.IO | |
| open Undertone |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| class cs210L3 | |
| { | |
| public static void main(String[] args) | |
| { | |
| Scanner input = new Scanner(System.in); | |
| //prompt me for a number | |
| System.out.println("pick a number"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for(i=0;i<toUnassign.length;i++) { | |
| form.append($('<input type="hidden" name="ToUnassign[' + i + ']" value=' + toUnassign[i] + '></input>')); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class Hello { | |
| public static void main(String[] args) { | |
| Scanner input = new Scanner(System.in); | |
| String answer = ""; | |
| String result = ""; | |
| char[] arrayOfCharacters; | |
| System.out.println("Give me a string and ill put spaces in it"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Person() { | |
| var name = ''; | |
| Object.defineProperty(this, 'name', { | |
| get: function() { | |
| return name; | |
| }, | |
| set: function(val) { | |
| name = val; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| namespace ParallelLibrary | |
| { | |
| public class FoolCollector | |
| { | |
| public List<Fool> ChainOfFools { get; set; } | |
| public void Collect() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Imports System | |
| Imports EnvDTE | |
| Imports EnvDTE80 | |
| Imports EnvDTE90 | |
| Imports EnvDTE90a | |
| Imports EnvDTE100 | |
| Imports System.Diagnostics | |
| Public Class Macros |