Legend:
x | y |
---|---|
type | Type |
() | void |
obj | object |
bool | bool |
#!/usr/bin/env python3 | |
# MIT License | |
# | |
# Copyright (c) Microsoft Corporation. | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
// Interact Monad, derived from https://fssnip.net/8ay (by Tomas Petricek) | |
// Interactive computation that asks the user questions | |
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
static Interactive<Color> GetColor() => new WhatColor<Color>(Interactive.Return); | |
static Interactive<int> GetNumber() => new WhatNumber<int>(Interactive.Return); |
// Author: Atif Aziz | |
// License: This code is released by "Author" into the public domain. | |
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
static partial class StaTask | |
{ | |
public static Task RunAsync(Action action) => |
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<Nullable>enable</Nullable> | |
</PropertyGroup> | |
<ItemGroup> |
#nullable enable | |
/* Zebra Puzzle: https://en.wikipedia.org/wiki/Zebra_Puzzle | |
* | |
> The following version of the puzzle appeared in Life International in 1962: | |
> | |
> 1. There are five houses. | |
> 2. The Englishman lives in the red house. | |
> 3. The Spaniard owns the dog. | |
> 4. Coffee is drunk in the green house. |
#region Copyright (c) Microsoft. All rights reserved. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
// copies of the Software, and to permit persons to whom the Software is | |
// furnished to do so, subject to the following conditions: | |
// | |
// The above copyright notice and this permission notice shall be included in |
8 REM MINNESOTA EDUCATIONAL COMPUTING CONSORTIUM STAFF | |
9 REM PROGRAMMING REVISIONS BY DON RAWITSCH - 1975 | |
11 REM CURRENT VERSION - 3/27/75 | |
15 REM **FOR THE MEANING OF THE VARIABLES USED, LIST LINES 4900-4960** | |
25 PRINT "DO YOU NEED INSTRUCTIONS (YES/NO)"; | |
30 DIM C$[5] | |
35 INPUT C$ | |
40 IF C$="NO" THEN 400 | |
45 PRINT LIN(2) | |
59 REM ***INSTRUCTIONS*** |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris eu nibh | |
ultrices, commodo metus placerat, lobortis magna. Vivamus hendrerit aliquam | |
cursus. Nulla tempus neque tellus. Etiam euismod elit vitae odio accumsan | |
bibendum nec et elit. Etiam sed tincidunt nisi. Maecenas ullamcorper placerat | |
nulla, quis fringilla purus pharetra vel. Praesent consequat et metus quis | |
commodo. Maecenas fringilla consequat hendrerit. Sed imperdiet cursus nunc at | |
auctor. Donec ac massa orci. | |
Sed eget gravida lacus. Pellentesque at nibh venenatis, feugiat sapien a, | |
tempor augue. Nullam consequat leo et mauris dictum, et interdum erat gravida. |