It's not a sword, it's a triangular blade. The wounds don't heal well due to the triagular shape, so it's meant for maxium damage. They're called bayonettes.
Bayonet
they shoot the sword out of the gun and stabs sombody!
In the cartridge, which is placed at the back end of the barrel, in the chamber.
well... the anime "gun sword had already ended
NO it came to its conclusion at the end of season 1 and thats Final
no ned kelly didn't have a sword he had a gun
It is a knife for cutting through leaves and vines. Its not a gun at all and its not exactly a sword but its similar to a knife.
A bayonet.
its not a gun but the energy sword
No. A gun is far more deadly than a sword. Even a ninja would be stopped by a gunman.
No, not even a sword.
977 Ruby program to figure this out: #!/usr/bin/ruby class Circle attr :guys attr :sword def initialize(numguys) @guys = (1 .. numguys).to_a @sword = 0 end def inspect @guys end def kill if @sword + 1 >= @guys.length if @sword >= @guys.length @sword = 0 else @sword = -1 end end @sword = @sword + 1 @guys.delete_at(@sword) end end theCircle = Circle.new(1000) while theCircle.guys.length > 1 theCircle.kill end printf "guys: %s\n", theCircle.guys.join(' ')