aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-090/abigail/awk/ch-1.awk10
1 files changed, 10 insertions, 0 deletions
diff --git a/challenge-090/abigail/awk/ch-1.awk b/challenge-090/abigail/awk/ch-1.awk
new file mode 100644
index 0000000000..23765f01c1
--- /dev/null
+++ b/challenge-090/abigail/awk/ch-1.awk
@@ -0,0 +1,10 @@
+{
+ print length;
+ gsub ("T", "x");
+ gsub ("A", "T");
+ gsub ("x", "A");
+ gsub ("G", "y");
+ gsub ("C", "G");
+ gsub ("y", "C");
+ print;
+}