Merge: doc: fixed some typos and other misc. corrections
[nit.git] / examples / rosettacode / tokenize.nit
1 #!/usr/bin/env nit
2 #
3 # This file is part of NIT ( http://www.nitlanguage.org ).
4 # This program is public domain
5
6 # Task: Tokenize a string
7 # SEE: <http://rosettacode.org/wiki/Tokenize a string>
8
9 for x in "Hello,How,Are,You,Today".split(",") do print x