summary refs log tree commit diff stats
path: root/web/snippets/snippet1.nim
diff options
context:
space:
mode:
authorMiran <narimiran@users.noreply.github.com>2018-10-08 20:42:38 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-10-08 20:42:38 +0200
commitcd5049e0783d208f9d6687b01549fc5e63314cd0 (patch)
treed070c3b9d99c8e010a8228134bf943805fb8ab55 /web/snippets/snippet1.nim
parent7cadb5a65d20a9c08d3bc1c9ab9f182b764e7364 (diff)
downloadNim-cd5049e0783d208f9d6687b01549fc5e63314cd0.tar.gz
[cleanup] remove web folder (#9233)
Closes #7577
Diffstat (limited to 'web/snippets/snippet1.nim')
-rw-r--r--web/snippets/snippet1.nim4
1 files changed, 0 insertions, 4 deletions
diff --git a/web/snippets/snippet1.nim b/web/snippets/snippet1.nim
deleted file mode 100644
index b0895e0c0..000000000
--- a/web/snippets/snippet1.nim
+++ /dev/null
@@ -1,4 +0,0 @@
-import strutils
-echo "Give a list of integers (separated by spaces): ",
-     stdin.readLine.split.each(parseInt).max,
-     " is the maximum!"