diff --git a/api/java/ttrts.java b/api/java/ttrts.java new file mode 100644 index 0000000..9413c37 --- /dev/null +++ b/api/java/ttrts.java @@ -0,0 +1,12 @@ + + +class ttrts +{ + + public static void main(String[] args) + { + System.out.println("I'm the ttrts Java module"); + + } + +} \ No newline at end of file diff --git a/api/python/ttrts.py b/api/python/ttrts.py new file mode 100755 index 0000000..1a92a6d --- /dev/null +++ b/api/python/ttrts.py @@ -0,0 +1,9 @@ +#! /usr/bin/python +# python ttrts module + +# Import the python regex module +import re + +headerRegex = re.compile( + "==== ttrts v(\\d+)\\.(\\d+)\\.(\\d+)+ ====\nNAME:(.+)\nSIZE:\\[(\\d+),(\\d+)\\]\nTURN:(\\d+)\n(WALL:.*?)" + ,re.MULTILINE ) \ No newline at end of file diff --git a/api/ruby/ttrts.rb b/api/ruby/ttrts.rb new file mode 100755 index 0000000..cc8a843 --- /dev/null +++ b/api/ruby/ttrts.rb @@ -0,0 +1,5 @@ +#!/usr/bin/ruby + +module TTRTS + +end \ No newline at end of file