this post was submitted on 17 Apr 2025
120 points (96.9% liked)

Ask Lemmy

31122 readers
3032 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

Ok, Lemmy, let's play a game!

Post how many languages in which you can count to ten, including your native language. If you like, provide which languages. I'm going to make a guess; after you've replied, come back and open the spoiler. If I'm right: upvote; if I'm wrong: downvote!

My guess, and my answer...My guess is that it's more than the number of languages you speak, read, and/or write.

Do you feel cheated because I didn't pick a number? Vote how you want to, or don't vote! I'm just interested in the count.

I can count to ten in five languages, but I only speak two. I can read a third, and I once was able to converse in a fourth, but have long since lost that skill. I know only some pick-up/borrow words from the 5th, including counting to 10.

  1. My native language is English
  2. I lived in Germany for a couple of years; because I never took classes, I can't write in German, but I spoke fluently by the time I left.
  3. I studied French in college for three years; I can read French, but I've yet to meet a French person who can understand what I'm trying to say, and I have a hard time comprehending it.
  4. I taught myself Esperanto a couple of decades ago, and used to hang out in Esperanto chat rooms. I haven't kept up.
  5. I can count to ten in Japanese because I took Aikido classes for a decade or so, and my instructor counted out loud in Japanese, and the various movements are numbered.

I can almost count to ten in Spanish, because I grew up in mid-California and there was a lot of Spanish thrown around. But French interferes, and I start in Spanish and find myself switching to French in the middle, so I'm not sure I could really do it.

Bonus question: do you ever do your counting in a non-native language, just to make it more interesting?

top 50 comments
sorted by: hot top controversial new old
[–] Litebit@lemmy.world 3 points 2 days ago

6 languages to 10 for me.

Counting to 20 or 100 would be a better measure of knowing the numbers of that language, since some languages become weird at 10 or 70 onwards, for example, french.

Some like Mandarin or malay, we just need to mainly just learn to 10, and it is very consistent and logical after that.

[–] lukstru@lemmy.world 65 points 4 days ago (5 children)

1. Python

for i in range(11):
    print(i)

2. R

for (i in 0:10) {
  print(i)
}

3. C/C++

#include <iostream>

int main() {
  for (int i = 0; i <= 10; ++i) {
    std::cout << i << std::endl;
  }
  return 0;
}

4. Java

public class CountToTen {
  public static void main(String[] args) {
    for (int i = 0; i <= 10; i++) {
      System.out.println(i);
    }
  }
}

5. Lua

for i = 0, 10 do
  print(i)
end

6. Bash (Shell Script)

for i in $(seq 0 10); do
  echo $i
done

7. Batch (Windows Command Script)

@echo off
for /l %%i in (0,1,10) do (
  echo %%i
)

8. Go

package main

import "fmt"

func main() {
  for i := 0; i <= 10; i++ {
    fmt.Println(i)
  }
}

9. Rust

fn main() {
  for i in 0..=10 {  // 0..=10 includes 10
    println!("{}", i);
  }
}

10. Zig

const std = @import("std");

pub fn main() !void {
    var i: i32 = 0;
    while (i <= 10) {
        std.debug.print("{}\n", .{i});
        i += 1;
    }
}

11. Scala

for (i <- 0 to 10) {
  println(i)
}

12. Fortran

program count_to_ten
  implicit none
  integer :: i

  do i = 0, 10
    print *, i
  end do

end program count_to_ten

13. Haskell

main :: IO ()
main = mapM_ print [0..10]

14. Julia

for i in 0:10
    println(i)
end
[–] Corngood@lemmy.ml 8 points 4 days ago (5 children)

If you didn't cheat that's actually pretty impressive.

[–] lukstru@lemmy.world 1 points 2 days ago* (last edited 2 days ago)

Yes I cheated. To be fair, I used each of those languages at one point and knew how to do it but was to lazy to look it up again.

Edit: except Fortran

load more comments (4 replies)
load more comments (4 replies)
[–] Old_Jimmy_Twodicks@sh.itjust.works 53 points 4 days ago (4 children)

English:

1 2 3 4 5 6 7 8 9 10

Spanish:

1 2 3 4 5 6 7 8 9 10

French:

1 2 3 4 5 6 7 8 9 10

German:

1 2 3 4 5 6 7 8 9 10

Italian:

1 2 3 4 5 6 7 8 9 10

Greek:

1 2 3 4 5 6 7 8 9 10

Mongolian:

᠐ ᠑ ᠒ ᠓ ᠔ ᠕ ᠖ ᠗ ᠘ ᠙ ᠑᠐

[–] Litebit@lemmy.world 2 points 2 days ago* (last edited 2 days ago) (1 children)

You know Malay too.

1 2 3 4 5 6 7 8 9 10

You show a good mastery of the hindu-arabic numerals.

I'm sorry, I just don't recognize those, but I'd love to learn them!

[–] Dicska@lemmy.world 9 points 4 days ago

The accent on the German is rather thick, though.

load more comments (2 replies)
[–] mitchty@lemmy.sdf.org 2 points 2 days ago

English, French, German, Portuguese, Spanish, and Japanese. Nothing special tbh.

[–] OmegaLemmy@discuss.online 2 points 2 days ago

Turkish, English, German, Greek, Kurmanji, Japanese

[–] SoulKaribou@lemmy.ml 2 points 2 days ago (1 children)

German, Cantonese, mandarin, English, French.

I used to know in Swahili too, does that count ?

[–] sxan@midwest.social 1 points 2 days ago

"Used to" is iffy, but sure. Why not? I'm sure if you read it once again, you'd be able to do it until you forgot again.

[–] benignintervention@lemmy.world 29 points 4 days ago (6 children)

Uno, dos, très, quatro, cinco cinco, ses

[–] vodkasolution@feddit.it 9 points 4 days ago

You know it's kinda hard

load more comments (5 replies)
[–] AI_toothbrush@lemmy.zip 3 points 3 days ago* (last edited 3 days ago) (1 children)

Lol do we count swedish, norweigan and danish as different languages? Btw other languages are my two native ones: hungarian and english, and then i know spanish because i had it in highschool and i lived 4 months there(cant really speak it anymore sadly) and then croatian because i had one if my friends teach it to me. I used to know some japanese but i also forgot that so without that the total is 5 i guess.

Bonus answer: as for everyday counting i do it either in hungarian or english so no i dont count in my non-native languages. My brain gets fried if i try to do maths for example in swedish. If i do english maths its no problem but i still prefer hungarian when i do large calculations without any paper.

[–] sxan@midwest.social 2 points 3 days ago

Yes, the Germanic languages all count separately. Canadian French doesn't count differently from France French because they call it "French" and it's essentially completely understandable. I've known Bavarians who insist Hamburgers are unintelligible, although it's all German.

I can almost understand Danish. Almost. Words, here and there. But not Swedish at all.

For the purposes of this count, if it's called a different name, it's a different language, regardless of how closely related. If it's called the same language, but they've drifted dialectically so much natives can barely understand each other, it's still the same language.

[–] ThePancakeExperiment@feddit.org 3 points 3 days ago* (last edited 3 days ago) (3 children)

I can count to ten in more language than I am able to speak (I just love learning stuff):

Can count above ten:
German (native), English, Norwegian, Romanian, Russian, Japanese

Can count only up to ten:
French, Polish, Mandarin

I am learning Romanian at the moment, those are 0-10: zero,
unu/ una,
doi/ două,
trei,
patru,
cinci,
șase,
șapte,
opt,
nouă,
zece

[–] Litebit@lemmy.world 2 points 2 days ago

Mandarin and Malay counting is very easy and consistent. You mainly just need to know until 10 or until 20 for malay. Malay uses English script, so you can read the numbers, too.

[–] SoulKaribou@lemmy.ml 3 points 3 days ago (2 children)

Well if you can count to ten in mandarin, you can count to 100.

It's literally 5 10 2, 5 10 3 for 52, 53 etc.

Add one more word for hundreds, one more for thousands.

After that it gets tough cause numbers beyond thousands are split by packs of 10 thousands, not hundred thousands like most western world (I guess).

Similar to the lakh in Indian

load more comments (2 replies)
[–] jnod4@lemmy.ca 2 points 3 days ago (1 children)

Quick question, why one would bother to learn romanian specifically? Family? Partners?

load more comments (1 replies)
[–] zagreas@lemm.ee 2 points 3 days ago

I can do it in English, Greek, German, Czech, Italian, Dutch, and Spanish (but I only speak the first 3)

[–] Harrk@lemmy.world 2 points 3 days ago

4: English (native), Spanish (learned at school and 1-10 is about all I recall), Mandarin, and Japanese.

[–] SalmiakDragon@feddit.nu 2 points 3 days ago
[–] Jumi@lemmy.world 2 points 3 days ago (3 children)

English, German, Austrian and Eastern Swiss

[–] sxan@midwest.social 3 points 3 days ago* (last edited 2 days ago) (1 children)

Eastern Swiss is German, you sly dog. So ~~it's~~ is Austrian. I think they even call it "German" don't they? That's like distinguishing "American" and "British".

Edit: fucking autocorrect.

[–] Jumi@lemmy.world 3 points 3 days ago

You might have got me there

load more comments (2 replies)
[–] FeelThePower@lemmy.dbzer0.com 1 points 3 days ago

English, Spanish, russian

[–] hossein@lemmy.sdf.org 2 points 3 days ago (1 children)

4: Persian, English, Chinese, French

I used to be able to do so in Esperanto and Arabic as well but not anymore.

[–] sxan@midwest.social 3 points 3 days ago (1 children)

Oooo, I want to learn Persian, just for the script. I had a Persian girl friend briefly who taught me to spell my same; I've long since forgotten, but it's gorgeous.

When I met her, she insisted she was Persian. When I pressed her about it, she said it was for safety, because we were in the middle of Iran-Contra and she was worried telling people she was Iranian would get her animosity. Back then, I thought that was silly, but then, it turns out she understood my countrymen better than I did.

[–] hossein@lemmy.sdf.org 2 points 2 days ago

Thanks for sharing your story.

If I weren't born Iranian, I'd learn Persian too just for the beautiful poems and songs that I haven't seen in any other language (Arabic and Urdu could come close though).

[–] grysbok@lemmy.sdf.org 3 points 3 days ago

4:

  • English (native)
  • Spanish (school)
  • French (school)
  • Korean (Taekwondo)

Hopefully next week I'll add Polish--I'm on day 3 of learning it in an app.

[–] Hudell@lemmy.dbzer0.com 2 points 3 days ago

Portuguese, English, Japanese, German and in a good day, Spanish.

Portuguese is native; English and Japanese I learned from consuming content in those languages; German comes from my family (though I recently started studying it too). And Spanish because it's very similar to Portuguese so I just need to remember the differences.

load more comments
view more: next ›