summaryrefslogtreecommitdiff
path: root/ask.c
diff options
context:
space:
mode:
Diffstat (limited to 'ask.c')
-rw-r--r--ask.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ask.c b/ask.c
index e69de29..c27d966 100644
--- a/ask.c
+++ b/ask.c
@@ -0,0 +1,8 @@
+#include <stdin.h>
+#
+
+int main(void)
+{
+ string ans = get_string("What's your name? ");
+ printf(ans);
+}