首页 > 编程语言 >法语编程语言Linotte体验

法语编程语言Linotte体验

时间:2022-11-25 17:59:24浏览次数:69  
标签:Linotte 编程语言 affiche ai de 法语 millisecondes dit

Linotte简介

[http://langagelinotte.free.fr/wordpress/]
[https://github.com/cpc6128/LangageLinotte]

Codez avec un vrai langage et en français !
用真正的法语编程!


(语法很像Python)
Linotte permet d’assimiler rapidement les mécanismes et les logiques de la programmation car il ne requiert aucune notion mathématique ou technique : il suffit de savoir lire et écrire ! Son environnement de développement entièrement en français facilite son apprentissage.
Linotte 可以让你快速理解编程的机制和逻辑,因为它不需要任何数学或技术概念:你只需要知道如何读写!它的开发环境完全是法语的,方便了它的学习。

配置环境(macOS)

下载安装包
[https://github.com/cpc6128/LangageLinotte/releases/download/v3.14/AtelierLinotte-3.14.dmg]
(如果提示文件已损坏,使用解决Mac安装软件的“已损坏,无法打开。 您应该将它移到废纸篓”问题的方法)

sudo xattr -r -d com.apple.quarantine /Applications/AtelierLinotte.app

体验

bonjour linotte程序

bonjour.liv

affiche "Bravo Arthur, tu viens de lire ton premier programme Linotte !"

条件语句

condition_3.liv

// Forme avec un bloc
si (1 * 1) < (1 + 1)
	affiche "j'ai dit :"
	attends 1000 millisecondes
	affiche "j'ai toujours raison !"
ferme
	// On peut également utiliser "sinon" avec un bloc
	
si (1 * 1) != (1 * 1)
	affiche "j'ai dit :"
	attends 500 millisecondes
	affiche "tu as tort !"
ferme
sinon
	affiche "j'ai dit :"
	attends 500 millisecondes
	affiche "j'ai toujours raison !"
ferme
	

/*
Cliquez sur le bouton LIRE pour exécuter ce programme
*/


标签:Linotte,编程语言,affiche,ai,de,法语,millisecondes,dit
From: https://www.cnblogs.com/qsbye/p/16925876.html

相关文章

  • delphi D11编程语言手册 学习笔记(P225-P343) OOP(面向对象)
      这本书可以在Delphi研习社②群256456744的群文件里找到.书名:Delphi11AlexandriaEdition.pdf●P139类是抽象的,变量是类的具现.类在定义时,只是......
  • 用十种编程语言开发秒表应用-第八篇-鸿蒙ArkUI版
    用十种编程语言开发秒表应用安卓Kotlin(安卓App)安卓Kotlin+JetpackCompose(安卓App)Swift(iOS应用,采用SwiftUI)Dart(Flutter应用,跨平台,适用安卓、ios、mac、windows、web)微信......
  • Unity Shader 2 编程语言
    Shader包括了HLSL基于DirectX的HightLevelShadingLanguageGLSL基于OpenGL的OpenGLShadingLanguageCGNVIDIA的CForGraphic简称CGUnity中提供了surfac......
  • 十大排序算法的各种编程语言的实现
    排序算法可以分为内部排序和外部排序,内部排序是数据记录在内存中进行排序,而外部排序是因排序的数据很大,一次不能容纳全部的排序记录,在排序过程中需要访问外存。常见的内部排......
  • JS语法语句、变量
    <!DOCTYPEhtml><html><head><metacharset="utf-8"><title></title></head><body><!--语法与语句,变量--><!--......
  • PHP是最好的编程语言吗?
    编程语言很多,既然存在,就有每个存在的理由。不想评论,也没必要评论,哪个语言好,哪个语言不好,因为,其实,每个编程语言本身都不难,只要学会了一种语言,其他的都是相通的。难的,好......
  • 不同编程语言的“Hello World”
    当我们学习一门编程语言时,都是从“Hello,World!”开始。所有程序员在其职业生涯中,都至少接触过一个经典的“Hello,World!”程序。通常程序员会使用多种编程语言,多的甚至......
  • 盘点 | 2022值得学习的编程语言 TOP 7
     CDA数据分析师出品编译:Mika如果我们把人类文明想象成汽车的话,那么软件开发行业就相当于汽车的引擎,编程语言就像引擎的燃料。2021年很快就要结束了。如今,软件开发行......
  • 如何快速的学习一门新的编程语言?
    工作中,经常有工作两年左右的同事,用手挠挠发量本来就不多的脑袋,问我:“我如何快速上手一门新语言呢?”程序世界变化非常快,新的框架、语言,新的词汇层出不穷,那作为有追求的技术人......
  • 12种编程语言的Hello World
    英文|https://javascript.plainenglish.io/hello-world-in-12-programming-languages-166acfdd161a​翻译|杨小二什么是HelloWorld程序?HelloWorld程序是一个非常简......